diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-12-20 06:15:13 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-30 12:01:12 -0300 |
commit | 02550ee8f836bde97d5148c79077584701281e38 (patch) | |
tree | 34af1dda18074a968595b00c4f9d995f73151e07 /include | |
parent | 97f8c8b4a73a9c718591b78484c0864bd98ecccb (diff) | |
download | linux-3.10-02550ee8f836bde97d5148c79077584701281e38.tar.gz linux-3.10-02550ee8f836bde97d5148c79077584701281e38.tar.bz2 linux-3.10-02550ee8f836bde97d5148c79077584701281e38.zip |
upstream: [media] adv7842: add drive strength enum and sync names with adv7604
Add a proper driver strength enum and use the same names in the platform
data as with adv7604.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/adv7842.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/media/adv7842.h b/include/media/adv7842.h index d72a8a7a5b3..39322091e8b 100644 --- a/include/media/adv7842.h +++ b/include/media/adv7842.h @@ -108,6 +108,13 @@ enum adv7842_select_input { ADV7842_SELECT_SDP_YC, }; +enum adv7842_drive_strength { + ADV7842_DR_STR_LOW = 0, + ADV7842_DR_STR_MEDIUM_LOW = 1, + ADV7842_DR_STR_MEDIUM_HIGH = 2, + ADV7842_DR_STR_HIGH = 3, +}; + struct adv7842_sdp_csc_coeff { bool manual; uint16_t scaling; @@ -186,11 +193,9 @@ struct adv7842_platform_data { unsigned output_bus_lsb_to_msb:1; /* IO register 0x14 */ - struct { - unsigned data:2; - unsigned clock:2; - unsigned sync:2; - } drive_strength; + enum adv7842_drive_strength dr_str_data; + enum adv7842_drive_strength dr_str_clk; + enum adv7842_drive_strength dr_str_sync; /* * IO register 0x19: Adjustment to the LLC DLL phase in |