Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/media/cec/cec-adap.c: fix build with gcc-4.4.4

gcc-4.4.4 has issues with initialization of anonymous unions:

drivers/media/cec/cec-adap.c: In function 'cec_queue_msg_fh':
drivers/media/cec/cec-adap.c:184: error: unknown field 'lost_msgs' specified in initializer

work around this.

Fixes: 6b2bbb08747a5 ("media: cec: rework the cec event handling")
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Hans Verkuil <hans.verkuil@cisco.com>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Andrew Morton and committed by
Linus Torvalds
c848c49a a47f68d6

+4 -1
+4 -1
drivers/media/cec/cec-adap.c
··· 181 181 { 182 182 static const struct cec_event ev_lost_msgs = { 183 183 .event = CEC_EVENT_LOST_MSGS, 184 - .lost_msgs.lost_msgs = 1, 184 + .flags = 0, 185 + { 186 + .lost_msgs = { 1 }, 187 + }, 185 188 }; 186 189 struct cec_msg_entry *entry; 187 190