From e14826bc8d04235367e2e145b46a3d3f0bbeb86e Mon Sep 17 00:00:00 2001 From: Anatolij Gustschin Date: Sun, 20 May 2012 12:22:59 +0000 Subject: [PATCH] drivers/usb/eth/asix.c: Fix build warning Fix: asix.c: In function 'asix_eth_get_info': asix.c:629:12: warning: assignment from incompatible pointer type Signed-off-by: Anatolij Gustschin --- drivers/usb/eth/asix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/eth/asix.c b/drivers/usb/eth/asix.c index 2f116c0..a3bf51a 100644 --- a/drivers/usb/eth/asix.c +++ b/drivers/usb/eth/asix.c @@ -419,7 +419,7 @@ out_err: return -1; } -static int asix_send(struct eth_device *eth, volatile void *packet, int length) +static int asix_send(struct eth_device *eth, void *packet, int length) { struct ueth_data *dev = (struct ueth_data *)eth->priv; int err; -- 2.7.4