Commit c8537e6d authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: fixes that open brace { should be on the previous line

This patch fixes the error reported by checkpatch.pl
for that open brace { should be on the previous line.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b38e9030
...@@ -1186,8 +1186,7 @@ static void wilc_set_multicast_list(struct net_device *dev) ...@@ -1186,8 +1186,7 @@ static void wilc_set_multicast_list(struct net_device *dev)
return; return;
} }
netdev_for_each_mc_addr(ha, dev) netdev_for_each_mc_addr(ha, dev) {
{
memcpy(multicast_mac_addr_list[i], ha->addr, ETH_ALEN); memcpy(multicast_mac_addr_list[i], ha->addr, ETH_ALEN);
PRINT_D(INIT_DBG, "Entry[%d]: %x:%x:%x:%x:%x:%x\n", i, PRINT_D(INIT_DBG, "Entry[%d]: %x:%x:%x:%x:%x:%x\n", i,
multicast_mac_addr_list[i][0], multicast_mac_addr_list[i][0],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment