drivers/net/usb/asix.c: Fix pointer cast.

Stephen Rothwell reports the following new warning:

drivers/net/usb/asix.c: In function 'asix_rx_fixup':
drivers/net/usb/asix.c:325: warning: cast from pointer to integer of different size
drivers/net/usb/asix.c:354: warning: cast from pointer to integer of different size

The code just cares about the low alignment bits, so use
an "unsigned long" cast instead of one to "u32".

Signed-off-by: David S. Miller <davem@davemloft.net>

+2 -2
+2 -2
drivers/net/usb/asix.c
··· 322 322 size = (u16) (header & 0x0000ffff); 323 323 324 324 if ((skb->len) - ((size + 1) & 0xfffe) == 0) { 325 - u8 alignment = (u32)skb->data & 0x3; 325 + u8 alignment = (unsigned long)skb->data & 0x3; 326 326 if (alignment != 0x2) { 327 327 /* 328 328 * not 16bit aligned so use the room provided by ··· 351 351 } 352 352 ax_skb = skb_clone(skb, GFP_ATOMIC); 353 353 if (ax_skb) { 354 - u8 alignment = (u32)packet & 0x3; 354 + u8 alignment = (unsigned long)packet & 0x3; 355 355 ax_skb->len = size; 356 356 357 357 if (alignment != 0x2) {