]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/net/ipx.h
avr32: Fix bug in LCD pin setup on port C
[linux-2.6-omap-h63xx.git] / include / net / ipx.h
index 4a423d2695baebcdd33dc5c02ae2a05b0c435eee..4cc0b4eca948b471159b29f1f6f7459d8989bd17 100644 (file)
@@ -26,8 +26,8 @@ struct ipx_address {
 #define IPX_MAX_PPROP_HOPS 8
 
 struct ipxhdr {
-       __u16                   ipx_checksum __attribute__ ((packed));
-#define IPX_NO_CHECKSUM        0xFFFF
+       __be16                  ipx_checksum __attribute__ ((packed));
+#define IPX_NO_CHECKSUM        __constant_htons(0xFFFF)
        __be16                  ipx_pktsize __attribute__ ((packed));
        __u8                    ipx_tctrl;
        __u8                    ipx_type;
@@ -43,7 +43,7 @@ struct ipxhdr {
 
 static __inline__ struct ipxhdr *ipx_hdr(struct sk_buff *skb)
 {
-       return (struct ipxhdr *)skb->h.raw;
+       return (struct ipxhdr *)skb_transport_header(skb);
 }
 
 struct ipx_interface {