Commit a8ab77a8 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by David S. Miller

net/7990: Fix whitespace errors

Most of them reported by checkpatch.pl
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ea074b34
This diff is collapsed.
This diff is collapsed.
...@@ -127,41 +127,41 @@ static void hplance_remove_one(struct dio_dev *d) ...@@ -127,41 +127,41 @@ static void hplance_remove_one(struct dio_dev *d)
/* Initialise a single lance board at the given DIO device */ /* Initialise a single lance board at the given DIO device */
static void hplance_init(struct net_device *dev, struct dio_dev *d) static void hplance_init(struct net_device *dev, struct dio_dev *d)
{ {
unsigned long va = (d->resource.start + DIO_VIRADDRBASE); unsigned long va = (d->resource.start + DIO_VIRADDRBASE);
struct hplance_private *lp; struct hplance_private *lp;
int i; int i;
/* reset the board */ /* reset the board */
out_8(va+DIO_IDOFF, 0xff); out_8(va + DIO_IDOFF, 0xff);
udelay(100); /* ariba! ariba! udelay! udelay! */ udelay(100); /* ariba! ariba! udelay! udelay! */
/* Fill the dev fields */ /* Fill the dev fields */
dev->base_addr = va; dev->base_addr = va;
dev->netdev_ops = &hplance_netdev_ops; dev->netdev_ops = &hplance_netdev_ops;
dev->dma = 0; dev->dma = 0;
for (i=0; i<6; i++) { for (i = 0; i < 6; i++) {
/* The NVRAM holds our ethernet address, one nibble per byte, /* The NVRAM holds our ethernet address, one nibble per byte,
* at bytes NVRAMOFF+1,3,5,7,9... * at bytes NVRAMOFF+1,3,5,7,9...
*/ */
dev->dev_addr[i] = ((in_8(va + HPLANCE_NVRAMOFF + i*4 + 1) & 0xF) << 4) dev->dev_addr[i] = ((in_8(va + HPLANCE_NVRAMOFF + i*4 + 1) & 0xF) << 4)
| (in_8(va + HPLANCE_NVRAMOFF + i*4 + 3) & 0xF); | (in_8(va + HPLANCE_NVRAMOFF + i*4 + 3) & 0xF);
} }
lp = netdev_priv(dev); lp = netdev_priv(dev);
lp->lance.name = (char*)d->name; /* discards const, shut up gcc */ lp->lance.name = (char *)d->name; /* discards const, shut up gcc */
lp->lance.base = va; lp->lance.base = va;
lp->lance.init_block = (struct lance_init_block *)(va + HPLANCE_MEMOFF); /* CPU addr */ lp->lance.init_block = (struct lance_init_block *)(va + HPLANCE_MEMOFF); /* CPU addr */
lp->lance.lance_init_block = NULL; /* LANCE addr of same RAM */ lp->lance.lance_init_block = NULL; /* LANCE addr of same RAM */
lp->lance.busmaster_regval = LE_C3_BSWP; /* we're bigendian */ lp->lance.busmaster_regval = LE_C3_BSWP; /* we're bigendian */
lp->lance.irq = d->ipl; lp->lance.irq = d->ipl;
lp->lance.writerap = hplance_writerap; lp->lance.writerap = hplance_writerap;
lp->lance.writerdp = hplance_writerdp; lp->lance.writerdp = hplance_writerdp;
lp->lance.readrdp = hplance_readrdp; lp->lance.readrdp = hplance_readrdp;
lp->lance.lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS; lp->lance.lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS;
lp->lance.lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS; lp->lance.lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS;
lp->lance.rx_ring_mod_mask = RX_RING_MOD_MASK; lp->lance.rx_ring_mod_mask = RX_RING_MOD_MASK;
lp->lance.tx_ring_mod_mask = TX_RING_MOD_MASK; lp->lance.tx_ring_mod_mask = TX_RING_MOD_MASK;
} }
/* This is disgusting. We have to check the DIO status register for ack every /* This is disgusting. We have to check the DIO status register for ack every
...@@ -195,25 +195,25 @@ static unsigned short hplance_readrdp(void *priv) ...@@ -195,25 +195,25 @@ static unsigned short hplance_readrdp(void *priv)
static int hplance_open(struct net_device *dev) static int hplance_open(struct net_device *dev)
{ {
int status; int status;
struct lance_private *lp = netdev_priv(dev); struct lance_private *lp = netdev_priv(dev);
status = lance_open(dev); /* call generic lance open code */ status = lance_open(dev); /* call generic lance open code */
if (status) if (status)
return status; return status;
/* enable interrupts at board level. */ /* enable interrupts at board level. */
out_8(lp->base + HPLANCE_STATUS, LE_IE); out_8(lp->base + HPLANCE_STATUS, LE_IE);
return 0; return 0;
} }
static int hplance_close(struct net_device *dev) static int hplance_close(struct net_device *dev)
{ {
struct lance_private *lp = netdev_priv(dev); struct lance_private *lp = netdev_priv(dev);
out_8(lp->base + HPLANCE_STATUS, 0); /* disable interrupts at boardlevel */ out_8(lp->base + HPLANCE_STATUS, 0); /* disable interrupts at boardlevel */
lance_close(dev); lance_close(dev);
return 0; return 0;
} }
static int __init hplance_init_module(void) static int __init hplance_init_module(void)
...@@ -223,7 +223,7 @@ static int __init hplance_init_module(void) ...@@ -223,7 +223,7 @@ static int __init hplance_init_module(void)
static void __exit hplance_cleanup_module(void) static void __exit hplance_cleanup_module(void)
{ {
dio_unregister_driver(&hplance_driver); dio_unregister_driver(&hplance_driver);
} }
module_init(hplance_init_module); module_init(hplance_init_module);
......
...@@ -94,33 +94,31 @@ struct net_device * __init mvme147lance_probe(int unit) ...@@ -94,33 +94,31 @@ struct net_device * __init mvme147lance_probe(int unit)
dev->netdev_ops = &lance_netdev_ops; dev->netdev_ops = &lance_netdev_ops;
dev->dma = 0; dev->dma = 0;
addr=(u_long *)ETHERNET_ADDRESS; addr = (u_long *)ETHERNET_ADDRESS;
address = *addr; address = *addr;
dev->dev_addr[0]=0x08; dev->dev_addr[0] = 0x08;
dev->dev_addr[1]=0x00; dev->dev_addr[1] = 0x00;
dev->dev_addr[2]=0x3e; dev->dev_addr[2] = 0x3e;
address=address>>8; address = address >> 8;
dev->dev_addr[5]=address&0xff; dev->dev_addr[5] = address&0xff;
address=address>>8; address = address >> 8;
dev->dev_addr[4]=address&0xff; dev->dev_addr[4] = address&0xff;
address=address>>8; address = address >> 8;
dev->dev_addr[3]=address&0xff; dev->dev_addr[3] = address&0xff;
printk("%s: MVME147 at 0x%08lx, irq %d, " printk("%s: MVME147 at 0x%08lx, irq %d, Hardware Address %pM\n",
"Hardware Address %pM\n",
dev->name, dev->base_addr, MVME147_LANCE_IRQ, dev->name, dev->base_addr, MVME147_LANCE_IRQ,
dev->dev_addr); dev->dev_addr);
lp = netdev_priv(dev); lp = netdev_priv(dev);
lp->ram = __get_dma_pages(GFP_ATOMIC, 3); /* 16K */ lp->ram = __get_dma_pages(GFP_ATOMIC, 3); /* 16K */
if (!lp->ram) if (!lp->ram) {
{
printk("%s: No memory for LANCE buffers\n", dev->name); printk("%s: No memory for LANCE buffers\n", dev->name);
free_netdev(dev); free_netdev(dev);
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
} }
lp->lance.name = (char*)name; /* discards const, shut up gcc */ lp->lance.name = (char *)name; /* discards const, shut up gcc */
lp->lance.base = dev->base_addr; lp->lance.base = dev->base_addr;
lp->lance.init_block = (struct lance_init_block *)(lp->ram); /* CPU addr */ lp->lance.init_block = (struct lance_init_block *)(lp->ram); /* CPU addr */
lp->lance.lance_init_block = (struct lance_init_block *)(lp->ram); /* LANCE addr of same RAM */ lp->lance.lance_init_block = (struct lance_init_block *)(lp->ram); /* LANCE addr of same RAM */
...@@ -167,8 +165,8 @@ static int m147lance_open(struct net_device *dev) ...@@ -167,8 +165,8 @@ static int m147lance_open(struct net_device *dev)
if (status) if (status)
return status; return status;
/* enable interrupts at board level. */ /* enable interrupts at board level. */
m147_pcc->lan_cntrl=0; /* clear the interrupts (if any) */ m147_pcc->lan_cntrl = 0; /* clear the interrupts (if any) */
m147_pcc->lan_cntrl=0x08 | 0x04; /* Enable irq 4 */ m147_pcc->lan_cntrl = 0x08 | 0x04; /* Enable irq 4 */
return 0; return 0;
} }
...@@ -176,7 +174,7 @@ static int m147lance_open(struct net_device *dev) ...@@ -176,7 +174,7 @@ static int m147lance_open(struct net_device *dev)
static int m147lance_close(struct net_device *dev) static int m147lance_close(struct net_device *dev)
{ {
/* disable interrupts at boardlevel */ /* disable interrupts at boardlevel */
m147_pcc->lan_cntrl=0x0; /* disable interrupts */ m147_pcc->lan_cntrl = 0x0; /* disable interrupts */
lance_close(dev); lance_close(dev);
return 0; return 0;
} }
......
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