drivers/net/lan91c96.c: Fix compile warning

Fix this:
lan91c96.c: In function 'lan91c96_initialize':
lan91c96.c:811:12: warning: assignment from incompatible pointer type

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
This commit is contained in:
Joe Hershberger 2012-05-21 14:45:30 +00:00
parent 78a7c17b74
commit 30934b3e5d
1 changed files with 2 additions and 2 deletions

View File

@ -314,7 +314,7 @@ static void smc_shutdown(struct eth_device *dev)
* Enable the transmit interrupt, so I know if it failed
* Free the kernel data if I actually sent it.
*/
static int smc_send_packet(struct eth_device *dev, volatile void *packet,
static int smc_send_packet(struct eth_device *dev, void *packet,
int packet_length)
{
byte packet_no;
@ -700,7 +700,7 @@ static int lan91c96_recv(struct eth_device *dev)
return smc_rcv(dev);
}
static int lan91c96_send(struct eth_device *dev, volatile void *packet,
static int lan91c96_send(struct eth_device *dev, void *packet,
int length)
{
return smc_send_packet(dev, packet, length);