diff options
author | Tomasz Stanislawski <t.stanislaws@samsung.com> | 2012-10-04 20:48:43 +0530 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2012-10-05 19:14:48 +0900 |
commit | c17eaf0c4d545c0901e4533aa072a377d6e11d15 (patch) | |
tree | 35267974e44ef9aef45ea59b4aa6168bd26a8024 /include/media/s5p_hdmi.h | |
parent | fab9f8d093a60e524efbf6afe6c10e10c91f1642 (diff) | |
download | linux-c17eaf0c4d545c0901e4533aa072a377d6e11d15.tar.bz2 |
media: s5p-hdmi: add HPD GPIO to platform data
This patch extends s5p-hdmi platform data by a GPIO identifier for
Hot-Plug-Detection pin.
Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
Acked-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'include/media/s5p_hdmi.h')
-rw-r--r-- | include/media/s5p_hdmi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/s5p_hdmi.h b/include/media/s5p_hdmi.h index 361a751f73af..181642b8d0a5 100644 --- a/include/media/s5p_hdmi.h +++ b/include/media/s5p_hdmi.h @@ -20,6 +20,7 @@ struct i2c_board_info; * @hdmiphy_info: template for HDMIPHY I2C device * @mhl_bus: controller id for MHL control bus * @mhl_info: template for MHL I2C device + * @hpd_gpio: GPIO for Hot-Plug-Detect pin * * NULL pointer for *_info fields indicates that * the corresponding chip is not present @@ -29,6 +30,7 @@ struct s5p_hdmi_platform_data { struct i2c_board_info *hdmiphy_info; int mhl_bus; struct i2c_board_info *mhl_info; + int hpd_gpio; }; #endif /* S5P_HDMI_H */ |