diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-06-09 06:08:02 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-07-04 04:17:57 -0400 |
commit | d27d20c88da7d78b389e5e824aff0cdfc9ce203f (patch) | |
tree | eed6c90e4dece2dbfe7673e627ad6f82e869fae9 /drivers/video | |
parent | eadd33bb95e0ab5e3f443bcd9ca45af4010110c8 (diff) |
OMAPDSS: HDMI: fix name conflict
OMAP HDMI driver has an 'enum hdmi_audio_sample_size', which conflicts
with the common include/linux/hdmi.h.
Change the name of the OMAP specific enum with '_omap" postfix.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/hdmi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/omap2/dss/hdmi.h b/drivers/video/fbdev/omap2/dss/hdmi.h index fbee07816337..1a62dc3fe54e 100644 --- a/drivers/video/fbdev/omap2/dss/hdmi.h +++ b/drivers/video/fbdev/omap2/dss/hdmi.h | |||
@@ -142,7 +142,7 @@ enum hdmi_audio_samples_perword { | |||
142 | HDMI_AUDIO_ONEWORD_TWOSAMPLES = 1 | 142 | HDMI_AUDIO_ONEWORD_TWOSAMPLES = 1 |
143 | }; | 143 | }; |
144 | 144 | ||
145 | enum hdmi_audio_sample_size { | 145 | enum hdmi_audio_sample_size_omap { |
146 | HDMI_AUDIO_SAMPLE_16BITS = 0, | 146 | HDMI_AUDIO_SAMPLE_16BITS = 0, |
147 | HDMI_AUDIO_SAMPLE_24BITS = 1 | 147 | HDMI_AUDIO_SAMPLE_24BITS = 1 |
148 | }; | 148 | }; |
@@ -260,7 +260,7 @@ struct hdmi_audio_format { | |||
260 | enum hdmi_audio_justify justification; | 260 | enum hdmi_audio_justify justification; |
261 | enum hdmi_audio_sample_order sample_order; | 261 | enum hdmi_audio_sample_order sample_order; |
262 | enum hdmi_audio_samples_perword samples_per_word; | 262 | enum hdmi_audio_samples_perword samples_per_word; |
263 | enum hdmi_audio_sample_size sample_size; | 263 | enum hdmi_audio_sample_size_omap sample_size; |
264 | enum hdmi_audio_blk_strt_end_sig en_sig_blk_strt_end; | 264 | enum hdmi_audio_blk_strt_end_sig en_sig_blk_strt_end; |
265 | }; | 265 | }; |
266 | 266 | ||