diff mbox

[U-Boot] arch/powerpc/cpu/mpc85xx/ether_fcc.c: Fix compile warning

Message ID 1337709381-27515-3-git-send-email-joe.hershberger@ni.com
State Accepted
Commit 412411cb2e6f5694b717d8ff574bcf61bfc476cf
Delegated to: Joe Hershberger
Headers show

Commit Message

Joe Hershberger May 22, 2012, 5:56 p.m. UTC
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>
---
 arch/powerpc/cpu/mpc85xx/ether_fcc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/arch/powerpc/cpu/mpc85xx/ether_fcc.c b/arch/powerpc/cpu/mpc85xx/ether_fcc.c
index 41c3c84..7d372aa 100644
--- a/arch/powerpc/cpu/mpc85xx/ether_fcc.c
+++ b/arch/powerpc/cpu/mpc85xx/ether_fcc.c
@@ -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;