mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
arch/powerpc/cpu/mpc85xx/ether_fcc.c: Fix compile warning
Fix this: ether_fcc.c: In function 'fec_initialize': ether_fcc.c:453:15: warning: assignment from incompatible pointer type Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
888fc6158e
commit
412411cb2e
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ static RTXBD rtx __attribute__ ((aligned(8)));
|
|||
|
||||
#undef ET_DEBUG
|
||||
|
||||
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)
|
||||
{
|
||||
int i = 0;
|
||||
int result = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue