mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
drivers/net/rtl8169.c: Fix compile warning
Fix this: rtl8169.c: In function 'rtl8169_initialize': rtl8169.c:907:13: warning: assignment from incompatible pointer type Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
f92a151cd1
commit
d1527b55f5
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ static int rtl_recv(struct eth_device *dev)
|
|||
/**************************************************************************
|
||||
SEND - Transmit a frame
|
||||
***************************************************************************/
|
||||
static int rtl_send(struct eth_device *dev, volatile void *packet, int length)
|
||||
static int rtl_send(struct eth_device *dev, void *packet, int length)
|
||||
{
|
||||
/* send the packet to destination */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue