mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
extcon: Make static analyzer happy about union assignment
When assign unions we need to supply non-scalar value, otherwise static analyzer is not happy: CHECK drivers/extcon/extcon.c drivers/extcon/extcon.c:631:22: warning: cast to non-scalar Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
This commit is contained in:
parent
1213a36681
commit
cff7499d7e
@ -628,7 +628,7 @@ int extcon_get_property(struct extcon_dev *edev, unsigned int id,
|
||||
unsigned long flags;
|
||||
int index, ret = 0;
|
||||
|
||||
*prop_val = (union extcon_property_value)(0);
|
||||
*prop_val = (union extcon_property_value){0};
|
||||
|
||||
if (!edev)
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user