Commit 416c6f90 authored by Hannes Eder's avatar Hannes Eder Committed by David S. Miller

drivers/net/ni65.c: fix sparse warnings: fix signedness

Fix this sparse warnings:
  drivers/net/ni65.c:488:36: warning: incorrect type in argument 2 (different signedness)
Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 00137dad
...@@ -481,8 +481,9 @@ static int __init ni65_probe1(struct net_device *dev,int ioaddr) ...@@ -481,8 +481,9 @@ static int __init ni65_probe1(struct net_device *dev,int ioaddr)
else { else {
if(dev->dma == 0) { if(dev->dma == 0) {
/* 'stuck test' from lance.c */ /* 'stuck test' from lance.c */
long dma_channels = ((inb(DMA1_STAT_REG) >> 4) & 0x0f) | unsigned long dma_channels =
(inb(DMA2_STAT_REG) & 0xf0); ((inb(DMA1_STAT_REG) >> 4) & 0x0f)
| (inb(DMA2_STAT_REG) & 0xf0);
for(i=1;i<5;i++) { for(i=1;i<5;i++) {
int dma = dmatab[i]; int dma = dmatab[i];
if(test_bit(dma,&dma_channels) || request_dma(dma,"ni6510")) if(test_bit(dma,&dma_channels) || request_dma(dma,"ni6510"))
......
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