mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
drivers/qe/uec.c: Fix compile warning
Fix this: uec.c: In function 'uec_initialize': uec.c:1404:12: warning: assignment from incompatible pointer type Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
4b94215007
commit
7ae84d5673
1 changed files with 1 additions and 1 deletions
|
@ -1288,7 +1288,7 @@ static void uec_halt(struct eth_device* dev)
|
|||
uec_stop(uec, COMM_DIR_RX_AND_TX);
|
||||
}
|
||||
|
||||
static int uec_send(struct eth_device* dev, volatile void *buf, int len)
|
||||
static int uec_send(struct eth_device *dev, void *buf, int len)
|
||||
{
|
||||
uec_private_t *uec;
|
||||
ucc_fast_private_t *uccf;
|
||||
|
|
Loading…
Reference in a new issue