diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2005-05-23 13:09:19 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-05-23 13:09:19 -0700 |
commit | 205902ecc7bcb2a007ed27bb3518e8f70e5d113e (patch) | |
tree | f2730d9ea3ce1a2cf85619f3f7077bedb6ec19ab /include | |
parent | d8659255c599ba497bcfb8b4abc187d9e0951d99 (diff) |
[NET]: netdevice.h: be'ify packet_type
Everybody does
struct packet_type foo_packet_type = {
.type = __constant_htons(ETH_P_FOO);
};
5 introduced warnings will be properly fixed later.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index ac11d73be4c..b25bd02720d 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -503,7 +503,7 @@ static inline void *netdev_priv(struct net_device *dev) #define SET_NETDEV_DEV(net, pdev) ((net)->class_dev.dev = (pdev)) struct packet_type { - unsigned short type; /* This is really htons(ether_type). */ + __be16 type; /* This is really htons(ether_type). */ struct net_device *dev; /* NULL is wildcarded here */ int (*func) (struct sk_buff *, struct net_device *, struct packet_type *); |