Commit bd280635 authored by David S. Miller's avatar David S. Miller

ks8842: Fix warnings on 64-bit.

drivers/net/ks8842.c:922:26: warning: cast from pointer to integer of different size
drivers/net/ks8842.c:940:17: warning: cast to pointer from integer of different size
drivers/net/ks8842.c:963:17: warning: cast to pointer from integer of different size
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ba01877f
...@@ -919,7 +919,7 @@ static void ks8842_dealloc_dma_bufs(struct ks8842_adapter *adapter) ...@@ -919,7 +919,7 @@ static void ks8842_dealloc_dma_bufs(struct ks8842_adapter *adapter)
static bool ks8842_dma_filter_fn(struct dma_chan *chan, void *filter_param) static bool ks8842_dma_filter_fn(struct dma_chan *chan, void *filter_param)
{ {
return chan->chan_id == (int)filter_param; return chan->chan_id == (long)filter_param;
} }
static int ks8842_alloc_dma_bufs(struct net_device *netdev) static int ks8842_alloc_dma_bufs(struct net_device *netdev)
...@@ -938,7 +938,7 @@ static int ks8842_alloc_dma_bufs(struct net_device *netdev) ...@@ -938,7 +938,7 @@ static int ks8842_alloc_dma_bufs(struct net_device *netdev)
sg_init_table(&tx_ctl->sg, 1); sg_init_table(&tx_ctl->sg, 1);
tx_ctl->chan = dma_request_channel(mask, ks8842_dma_filter_fn, tx_ctl->chan = dma_request_channel(mask, ks8842_dma_filter_fn,
(void *)tx_ctl->channel); (void *)(long)tx_ctl->channel);
if (!tx_ctl->chan) { if (!tx_ctl->chan) {
err = -ENODEV; err = -ENODEV;
goto err; goto err;
...@@ -961,7 +961,7 @@ static int ks8842_alloc_dma_bufs(struct net_device *netdev) ...@@ -961,7 +961,7 @@ static int ks8842_alloc_dma_bufs(struct net_device *netdev)
} }
rx_ctl->chan = dma_request_channel(mask, ks8842_dma_filter_fn, rx_ctl->chan = dma_request_channel(mask, ks8842_dma_filter_fn,
(void *)rx_ctl->channel); (void *)(long)rx_ctl->channel);
if (!rx_ctl->chan) { if (!rx_ctl->chan) {
err = -ENODEV; err = -ENODEV;
goto err; goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment