From: Joe Hershberger Date: Tue, 22 May 2012 07:56:11 +0000 (+0000) Subject: arch/powerpc/cpu/mpc8260/ether_fcc.c: Fix compile warning X-Git-Tag: v2012.07-rc1~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=888fc6158e1dac72dc0c754a5c7f55d95c0ff9c6;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/arch/powerpc/cpu/mpc8260/ether_fcc.c b/arch/powerpc/cpu/mpc8260/ether_fcc.c index 879ec0e..eed0a4b 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;