mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
[media] cec-adap.c: work around gcc-4.4.4 anon union initializer bug
drivers/staging/media/cec/cec-adap.c: In function 'cec_queue_msg_fh': drivers/staging/media/cec/cec-adap.c:141: error: unknown field 'lost_msgs' specified in initializer Fixes: 9881fe0ca187c21 ("[media] cec: add HDMI CEC framework (adapter)") Cc: Hans Verkuil <hans.verkuil@cisco.com> Cc: Kamil Debski <kamil@wypas.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
9d01315d13
commit
6a91d60aba
@ -137,8 +137,12 @@ static void cec_queue_event(struct cec_adapter *adap,
|
||||
static void cec_queue_msg_fh(struct cec_fh *fh, const struct cec_msg *msg)
|
||||
{
|
||||
static const struct cec_event ev_lost_msg = {
|
||||
.ts = 0,
|
||||
.event = CEC_EVENT_LOST_MSGS,
|
||||
.lost_msgs.lost_msgs = 1,
|
||||
.flags = 0,
|
||||
{
|
||||
.lost_msgs.lost_msgs = 1,
|
||||
},
|
||||
};
|
||||
struct cec_msg_entry *entry;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user