mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-30 11:01:33 +00:00
drivers/net/fec_mxc.c: Fix compile warning
Fix this: fec_mxc.c: In function 'fec_probe': fec_mxc.c:926:13: 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:
parent
b58cab3429
commit
442dac4c7f
1 changed files with 1 additions and 1 deletions
|
@ -687,7 +687,7 @@ static void fec_halt(struct eth_device *dev)
|
|||
* @param[in] length Data count in bytes
|
||||
* @return 0 on success
|
||||
*/
|
||||
static int fec_send(struct eth_device *dev, volatile void *packet, int length)
|
||||
static int fec_send(struct eth_device *dev, void *packet, int length)
|
||||
{
|
||||
unsigned int status;
|
||||
uint32_t size;
|
||||
|
|
Loading…
Add table
Reference in a new issue