[netdrvr] checkpatch cleanups

Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
Jeff Garzik 2007-11-23 21:50:34 -05:00 committed by David S. Miller
parent 93a3b607e6
commit cba0516ddb
7 changed files with 18 additions and 16 deletions

View File

@ -832,10 +832,11 @@ static void el16_rx(struct net_device *dev)
if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22 if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22
|| (pkt_len & 0xC000) != 0xC000) { || (pkt_len & 0xC000) != 0xC000) {
printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x " printk(KERN_ERR "%s: Rx frame at %#x corrupted, "
"next %04x data-buf @%04x %04x.\n", dev->name, rx_head, "status %04x cmd %04x next %04x "
frame_status, rfd_cmd, next_rx_frame, data_buffer_addr, "data-buf @%04x %04x.\n",
pkt_len); dev->name, rx_head, frame_status, rfd_cmd,
next_rx_frame, data_buffer_addr, pkt_len);
} else if ((frame_status & 0x2000) == 0) { } else if ((frame_status & 0x2000) == 0) {
/* Frame Rxed, but with error. */ /* Frame Rxed, but with error. */
dev->stats.rx_errors++; dev->stats.rx_errors++;
@ -851,7 +852,9 @@ static void el16_rx(struct net_device *dev)
pkt_len &= 0x3fff; pkt_len &= 0x3fff;
skb = dev_alloc_skb(pkt_len+2); skb = dev_alloc_skb(pkt_len+2);
if (skb == NULL) { if (skb == NULL) {
printk("%s: Memory squeeze, dropping packet.\n", dev->name); printk(KERN_ERR "%s: Memory squeeze, "
"dropping packet.\n",
dev->name);
dev->stats.rx_dropped++; dev->stats.rx_dropped++;
break; break;
} }

View File

@ -465,8 +465,9 @@ static int __init at1700_probe1(struct net_device *dev, int ioaddr)
/* Snarf the interrupt vector now. */ /* Snarf the interrupt vector now. */
ret = request_irq(irq, &net_interrupt, 0, DRV_NAME, dev); ret = request_irq(irq, &net_interrupt, 0, DRV_NAME, dev);
if (ret) { if (ret) {
printk (" AT1700 at %#3x is unusable due to a conflict on " printk(KERN_ERR "AT1700 at %#3x is unusable due to a "
"IRQ %d.\n", ioaddr, irq); "conflict on IRQ %d.\n",
ioaddr, irq);
goto err_mca; goto err_mca;
} }

View File

@ -8788,8 +8788,7 @@ static int __devinit bnx2x_init_board(struct pci_dev *pdev,
INIT_WORK(&bp->reset_task, bnx2x_reset_task); INIT_WORK(&bp->reset_task, bnx2x_reset_task);
INIT_WORK(&bp->sp_task, bnx2x_sp_task); INIT_WORK(&bp->sp_task, bnx2x_sp_task);
dev->base_addr = dev->mem_start = pci_resource_start(pdev, 0); dev->base_addr = pci_resource_start(pdev, 0);
dev->mem_end = pci_resource_end(pdev, 0);
dev->irq = pdev->irq; dev->irq = pdev->irq;

View File

@ -784,8 +784,7 @@ static irqreturn_t eexp_irq(int dummy, void *dev_info)
old_read_ptr = inw(ioaddr+READ_PTR); old_read_ptr = inw(ioaddr+READ_PTR);
old_write_ptr = inw(ioaddr+WRITE_PTR); old_write_ptr = inw(ioaddr+WRITE_PTR);
outb(SIRQ_dis|irqrmap[dev->irq],ioaddr+SET_IRQ); outb(SIRQ_dis|irqrmap[dev->irq], ioaddr+SET_IRQ);
status = scb_status(dev); status = scb_status(dev);
@ -852,7 +851,7 @@ static irqreturn_t eexp_irq(int dummy, void *dev_info)
eexp_cmd_clear(dev); eexp_cmd_clear(dev);
outb(SIRQ_en|irqrmap[dev->irq],ioaddr+SET_IRQ); outb(SIRQ_en|irqrmap[dev->irq], ioaddr+SET_IRQ);
#if NET_DEBUG > 6 #if NET_DEBUG > 6
printk("%s: leaving eexp_irq()\n", dev->name); printk("%s: leaving eexp_irq()\n", dev->name);

View File

@ -1144,7 +1144,7 @@ i596_handle_CU_completion(struct net_device *dev,
} }
static irqreturn_t static irqreturn_t
i596_interrupt (int irq, void *dev_instance) i596_interrupt(int irq, void *dev_instance)
{ {
struct net_device *dev = dev_instance; struct net_device *dev = dev_instance;
struct i596_private *lp = dev->priv; struct i596_private *lp = dev->priv;

View File

@ -4168,7 +4168,7 @@ de4x5_bad_srom(struct de4x5_private *lp)
{ {
int i, status = 0; int i, status = 0;
for (i=0; i < ARRAY_SIZE(enet_det); i++) { for (i = 0; i < ARRAY_SIZE(enet_det); i++) {
if (!de4x5_strncmp((char *)&lp->srom, (char *)&enet_det[i], 3) && if (!de4x5_strncmp((char *)&lp->srom, (char *)&enet_det[i], 3) &&
!de4x5_strncmp((char *)&lp->srom+0x10, (char *)&enet_det[i], 3)) { !de4x5_strncmp((char *)&lp->srom+0x10, (char *)&enet_det[i], 3)) {
if (i == 0) { if (i == 0) {
@ -4188,7 +4188,7 @@ de4x5_strncmp(char *a, char *b, int n)
{ {
int ret=0; int ret=0;
for (;n && !ret;n--) { for (;n && !ret; n--) {
ret = *a++ - *b++; ret = *a++ - *b++;
} }