diff options
| author | Stephan Linz <linz@li-pro.net> | 2012-05-22 12:18:09 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-22 23:17:52 -0500 | 
| commit | f22ff1ab09ee906790f08dea2942686c8370ac3d (patch) | |
| tree | 32ba8805cce6d1db31ccbfefcc2cdd91d636a686 /drivers/net/xilinx_ll_temac_fifo.h | |
| parent | bb901574922dcf9c97c33bc04fba3ba539397527 (diff) | |
| download | olio-uboot-2014.01-f22ff1ab09ee906790f08dea2942686c8370ac3d.tar.xz olio-uboot-2014.01-f22ff1ab09ee906790f08dea2942686c8370ac3d.zip | |
drivers/net/xilinx_ll_temac.c: Fix compile warning
Fix this:
xilinx_ll_temac.c: In function 'xilinx_ll_temac_initialize':
xilinx_ll_temac.c:332: warning: assignment from incompatible pointer type
xilinx_ll_temac.c:340: warning: assignment from incompatible pointer type
Signed-off-by: Stephan Linz <linz@li-pro.net>
Diffstat (limited to 'drivers/net/xilinx_ll_temac_fifo.h')
| -rw-r--r-- | drivers/net/xilinx_ll_temac_fifo.h | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/drivers/net/xilinx_ll_temac_fifo.h b/drivers/net/xilinx_ll_temac_fifo.h index f0d6e6823..e5b4be9e6 100644 --- a/drivers/net/xilinx_ll_temac_fifo.h +++ b/drivers/net/xilinx_ll_temac_fifo.h @@ -116,7 +116,6 @@ int ll_temac_reset_fifo(struct eth_device *dev);  int ll_temac_recv_fifo(struct eth_device *dev);  /* send buffered data to FIFO */ -int ll_temac_send_fifo(struct eth_device *dev, volatile void *packet, -							int length); +int ll_temac_send_fifo(struct eth_device *dev, void *packet, int length);  #endif /* _XILINX_LL_TEMAC_FIFO_ */ |