diff options
author | Hans Verkuil | 2017-08-01 07:53:30 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab | 2017-08-09 09:36:13 -0400 |
commit | 79bcd34ccfe009ad21d16100ae2aef9b378a512d (patch) | |
tree | b230654ad71b90bdf9465a91863f90e290fb6179 | |
parent | 079c6eaf80d9fb6d9cea7ad71e590c8425c1b0fe (diff) |
media: cec-funcs.h: cec_ops_report_features: set *dev_features to NULL
gcc can get confused by this code and it thinks dev_features can be
returned uninitialized. So initialize to NULL at the beginning to shut up
the warning.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | include/uapi/linux/cec-funcs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/cec-funcs.h b/include/uapi/linux/cec-funcs.h index c451eec42a83..270b251a3d9b 100644 --- a/include/uapi/linux/cec-funcs.h +++ b/include/uapi/linux/cec-funcs.h @@ -895,6 +895,7 @@ static inline void cec_ops_report_features(const struct cec_msg *msg, *cec_version = msg->msg[2]; *all_device_types = msg->msg[3]; *rc_profile = p; + *dev_features = NULL; while (p < &msg->msg[14] && (*p & CEC_OP_FEAT_EXT)) p++; if (!(*p & CEC_OP_FEAT_EXT)) { |