OSDN Git Service

net: usb: aqc111: Initialize wol_cfg with memset in aqc111_suspend
authorNathan Chancellor <natechancellor@gmail.com>
Thu, 29 Nov 2018 06:01:05 +0000 (23:01 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 1 Dec 2018 01:26:15 +0000 (17:26 -0800)
commit97e6c858a26ee8a31719a08ae896ca682eb8978e
tree6eb42d21c5d5c099fb4c499c0e6394c758ccb44a
parent315c9e83010d63370fb0de160e52a21c3f3fa687
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>
drivers/net/usb/aqc111.c