diff options
author | David S. Miller <davem@davemloft.net> | 2012-06-27 22:01:22 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-27 22:01:22 -0700 |
commit | 160eb5a6b14ca2eab5c598bdbbb24c24624bad34 (patch) | |
tree | ccdc41681ef1e8cd634084c5160890cc975961a0 /include/net/protocol.h | |
parent | 1d1e34ddd48d27def2f324c1e3be16d460b16436 (diff) |
ipv4: Kill early demux method return value.
It's completely unnecessary.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/protocol.h')
-rw-r--r-- | include/net/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/protocol.h b/include/net/protocol.h index 967b926cbfb1..057f2d315567 100644 --- a/include/net/protocol.h +++ b/include/net/protocol.h @@ -37,7 +37,7 @@ /* This is used to register protocols. */ struct net_protocol { - int (*early_demux)(struct sk_buff *skb); + void (*early_demux)(struct sk_buff *skb); int (*handler)(struct sk_buff *skb); void (*err_handler)(struct sk_buff *skb, u32 info); int (*gso_send_check)(struct sk_buff *skb); |