drivers/net/appletalk: endianness

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Al Viro 2007-08-23 03:03:13 -04:00 committed by David S. Miller
parent 2929e7700f
commit 16989ba6e9
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ static struct net_device_stats *ipddp_get_stats(struct net_device *dev)
*/ */
static int ipddp_xmit(struct sk_buff *skb, struct net_device *dev) static int ipddp_xmit(struct sk_buff *skb, struct net_device *dev)
{ {
u32 paddr = ((struct rtable*)skb->dst)->rt_gateway; __be32 paddr = ((struct rtable*)skb->dst)->rt_gateway;
struct ddpehdr *ddp; struct ddpehdr *ddp;
struct ipddp_route *rt; struct ipddp_route *rt;
struct atalk_addr *our_addr; struct atalk_addr *our_addr;

View File

@ -14,7 +14,7 @@
struct ipddp_route struct ipddp_route
{ {
struct net_device *dev; /* Carrier device */ struct net_device *dev; /* Carrier device */
__u32 ip; /* IP address */ __be32 ip; /* IP address */
struct atalk_addr at; /* Gateway appletalk address */ struct atalk_addr at; /* Gateway appletalk address */
int flags; int flags;
struct ipddp_route *next; struct ipddp_route *next;