[U-Boot] [PATCH] drivers/qe/uec.c: Fix compile warning
Joe Hershberger
joe.hershberger at ni.com
Tue May 22 19:56:21 CEST 2012
Fix this:
uec.c: In function 'uec_initialize':
uec.c:1404:12: warning: assignment from incompatible pointer type
Signed-off-by: Joe Hershberger <joe.hershberger at ni.com>
---
drivers/qe/uec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c
index 3e46e35..216c898 100644
--- a/drivers/qe/uec.c
+++ b/drivers/qe/uec.c
@@ -1288,7 +1288,7 @@ static void uec_halt(struct eth_device* dev)
uec_stop(uec, COMM_DIR_RX_AND_TX);
}
-static int uec_send(struct eth_device* dev, volatile void *buf, int len)
+static int uec_send(struct eth_device *dev, void *buf, int len)
{
uec_private_t *uec;
ucc_fast_private_t *uccf;
--
1.6.0.2
More information about the U-Boot
mailing list