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 <agust@denx.de>
This commit is contained in:
Anatolij Gustschin 2012-05-20 12:22:59 +00:00 committed by Joe Hershberger
parent 287e3ad488
commit e14826bc8d
1 changed files with 1 additions and 1 deletions

View File

@ -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;