diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2015-06-07 07:32:30 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-06-09 17:28:39 -0300 |
commit | 5be50ef1ef45d749c17e98b9483730331ee8c49c (patch) | |
tree | 5036a0cf7813cb7f1bdc8cbf822dc7e8295ce16a /include/media | |
parent | 7bcff1c242475ffc47e413ac7b1d7a3e3529b109 (diff) |
[media] adv7511: replace uintX_t by uX for consistency
Currently this driver mixes u8/u16 and uint8_t/uint16_t. Standardize on
u8/u16.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/adv7511.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/media/adv7511.h b/include/media/adv7511.h index bb78bed9a5b8..f351eff404d6 100644 --- a/include/media/adv7511.h +++ b/include/media/adv7511.h @@ -40,9 +40,9 @@ struct adv7511_cec_arg { }; struct adv7511_platform_data { - uint8_t i2c_edid; - uint8_t i2c_cec; - uint32_t cec_clk; + u8 i2c_edid; + u8 i2c_cec; + u32 cec_clk; }; #endif |