diff options
author | Anatolij Gustschin <agust@denx.de> | 2012-05-21 09:13:52 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-22 10:18:14 -0500 |
commit | c2996086c2b7b9574bf8eed6c9b971f44d7a81d3 (patch) | |
tree | c1136553a4cc3ed0b04bfe7a1352fea5423006ed /drivers | |
parent | 1b10d0717a381ebf263e44488107dce40f75f4fb (diff) | |
download | u-boot-c2996086c2b7b9574bf8eed6c9b971f44d7a81d3.tar.gz u-boot-c2996086c2b7b9574bf8eed6c9b971f44d7a81d3.tar.xz u-boot-c2996086c2b7b9574bf8eed6c9b971f44d7a81d3.zip |
drivers/net/mpc512x_fec.c: Fix build warning
Fix:
mpc512x_fec.c: In function 'mpc512x_fec_initialize':
mpc512x_fec.c:634: warning: assignment from incompatible pointer type
Tested on mpc5121ads board using tftp and nfs commands.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/mpc512x_fec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/mpc512x_fec.c b/drivers/net/mpc512x_fec.c index 0d5efd56ea..ad57d566be 100644 --- a/drivers/net/mpc512x_fec.c +++ b/drivers/net/mpc512x_fec.c @@ -452,8 +452,8 @@ static void mpc512x_fec_halt (struct eth_device *dev) /********************************************************************/ -static int mpc512x_fec_send (struct eth_device *dev, volatile void *eth_data, - int data_length) +static int mpc512x_fec_send(struct eth_device *dev, void *eth_data, + int data_length) { /* * This routine transmits one frame. This routine only accepts |