Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e9649c1 authored by Jean Sacren's avatar Jean Sacren Committed by David S. Miller
Browse files

net: do not manually initialize enumerators



Clean up unnecessary initialization of enumerators as the compiler takes
care of that.

Signed-off-by: default avatarJean Sacren <sakiwit@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ebd4687a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -79,9 +79,9 @@ enum sock_type {
#endif /* ARCH_HAS_SOCKET_TYPES */

enum sock_shutdown_cmd {
	SHUT_RD		= 0,
	SHUT_WR		= 1,
	SHUT_RDWR	= 2,
	SHUT_RD,
	SHUT_WR,
	SHUT_RDWR,
};

struct socket_wq {