diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-22 07:56:11 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-22 13:41:46 -0500 | 
| commit | 888fc6158e1dac72dc0c754a5c7f55d95c0ff9c6 (patch) | |
| tree | 5bc522084854487352146e9726e0511e28c7ee5b | |
| parent | 3573c327a627b5d309118fccb1a58ffb39660116 (diff) | |
| download | olio-uboot-2014.01-888fc6158e1dac72dc0c754a5c7f55d95c0ff9c6.tar.xz olio-uboot-2014.01-888fc6158e1dac72dc0c754a5c7f55d95c0ff9c6.zip | |
arch/powerpc/cpu/mpc8260/ether_fcc.c: Fix compile warning
Fix this:
ether_fcc.c: In function 'fec_initialize':
ether_fcc.c:390:15: warning: assignment from incompatible pointer type
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
| -rw-r--r-- | arch/powerpc/cpu/mpc8260/ether_fcc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc8260/ether_fcc.c b/arch/powerpc/cpu/mpc8260/ether_fcc.c index 879ec0ea2..eed0a4bab 100644 --- a/arch/powerpc/cpu/mpc8260/ether_fcc.c +++ b/arch/powerpc/cpu/mpc8260/ether_fcc.c @@ -142,7 +142,7 @@ static RTXBD rtx __attribute__ ((aligned(8)));  #error "rtx must be 64-bit aligned"  #endif -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;      int result = 0; |