Searched hist:"97 e6c858a26ee8a31719a08ae896ca682eb8978e" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/drivers/net/usb/ |
H A D | aqc111.c | diff 97e6c858a26ee8a31719a08ae896ca682eb8978e Thu Nov 29 00:01:05 CST 2018 Nathan Chancellor <natechancellor@gmail.com> net: usb: aqc111: Initialize wol_cfg with memset in aqc111_suspend
Clang warns:
drivers/net/usb/aqc111.c:1326:37: warning: suggest braces around initialization of subobject [-Wmissing-braces] struct aqc111_wol_cfg wol_cfg = { 0 }; ^ {} 1 warning generated.
Use memset to initialize the object to take compiler instrumentation out of the equation.
Fixes: e58ba4544c77 ("net: usb: aqc111: Add support for wake on LAN by MAGIC packet") Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
|