You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
net: fix returning void-valued expression warnings
drivers/net/8390.c:37:2: warning: returning void-valued expression drivers/net/bnx2.c:1635:3: warning: returning void-valued expression drivers/net/xen-netfront.c:1806:2: warning: returning void-valued expression net/ipv4/tcp_hybla.c:105:3: warning: returning void-valued expression net/ipv4/tcp_vegas.c:171:3: warning: returning void-valued expression net/ipv4/tcp_veno.c:123:3: warning: returning void-valued expression net/sysctl_net.c:85:2: warning: returning void-valued expression Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Acked-by: Alan Cox <alan@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
c2a3b23345
commit
ab59859de1
@@ -1803,7 +1803,7 @@ static void __exit netif_exit(void)
|
||||
if (is_initial_xendomain())
|
||||
return;
|
||||
|
||||
return xenbus_unregister_driver(&netfront);
|
||||
xenbus_unregister_driver(&netfront);
|
||||
}
|
||||
module_exit(netif_exit);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user