diff options
author | Anatolij Gustschin <agust@denx.de> | 2012-05-20 12:22:57 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-22 10:18:13 -0500 |
commit | 2f2c29ab3a5ea3e3133137d47e4d145cfd96db46 (patch) | |
tree | abcf859d4cfa2f0315f55baee0bb7e6d82670a4a | |
parent | 92ec210d310992de553db8077118ad66037feb80 (diff) | |
download | u-boot-imx-2f2c29ab3a5ea3e3133137d47e4d145cfd96db46.zip u-boot-imx-2f2c29ab3a5ea3e3133137d47e4d145cfd96db46.tar.gz u-boot-imx-2f2c29ab3a5ea3e3133137d47e4d145cfd96db46.tar.bz2 |
drivers/net/mpc5xxx_fec.c: Fix build warning
Fix:
mpc5xxx_fec.c: In function 'mpc5xxx_fec_initialize':
mpc5xxx_fec.c:920: warning: assignment from incompatible pointer type
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Tested-by: Anatolij Gustschin <agust@denx.de>
-rw-r--r-- | drivers/net/mpc5xxx_fec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/mpc5xxx_fec.c b/drivers/net/mpc5xxx_fec.c index bc8c922..3d180db 100644 --- a/drivers/net/mpc5xxx_fec.c +++ b/drivers/net/mpc5xxx_fec.c @@ -707,7 +707,7 @@ static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec) /********************************************************************/ -static int mpc5xxx_fec_send(struct eth_device *dev, volatile void *eth_data, +static int mpc5xxx_fec_send(struct eth_device *dev, void *eth_data, int data_length) { /* |