drivers/net/rtl8139.c: Fix compile warning
Fix this: rtl8139.c: In function 'rtl8139_initialize': rtl8139.c:234:13: warning: assignment from incompatible pointer type Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
7c64a50414
commit
86f3cded06
@ -184,7 +184,7 @@ static unsigned char rx_ring[RX_BUF_LEN+16] __attribute__((aligned(4)));
|
||||
static int rtl8139_probe(struct eth_device *dev, bd_t *bis);
|
||||
static int read_eeprom(int location, int addr_len);
|
||||
static void rtl_reset(struct eth_device *dev);
|
||||
static int rtl_transmit(struct eth_device *dev, volatile void *packet, int length);
|
||||
static int rtl_transmit(struct eth_device *dev, void *packet, int length);
|
||||
static int rtl_poll(struct eth_device *dev);
|
||||
static void rtl_disable(struct eth_device *dev);
|
||||
#ifdef CONFIG_MCAST_TFTP/* This driver already accepts all b/mcast */
|
||||
@ -407,7 +407,7 @@ static void rtl_reset(struct eth_device *dev)
|
||||
outw(0, ioaddr + IntrMask);
|
||||
}
|
||||
|
||||
static int rtl_transmit(struct eth_device *dev, volatile void *packet, int length)
|
||||
static int rtl_transmit(struct eth_device *dev, void *packet, int length)
|
||||
{
|
||||
unsigned int status;
|
||||
unsigned long txstatus;
|
||||
|
Loading…
Reference in New Issue
Block a user