|
@@ -227,14 +227,14 @@ islpci_interrupt(int irq, void *config)
|
|
|
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
DEBUG(SHOW_FUNCTION_CALLS,
|
|
|
- "IRQ: Identification register 0x%p 0x%x \n", device, reg);
|
|
|
+ "IRQ: Identification register 0x%p 0x%x\n", device, reg);
|
|
|
#endif
|
|
|
|
|
|
/* check for each bit in the register separately */
|
|
|
if (reg & ISL38XX_INT_IDENT_UPDATE) {
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
/* Queue has been updated */
|
|
|
- DEBUG(SHOW_TRACING, "IRQ: Update flag \n");
|
|
|
+ DEBUG(SHOW_TRACING, "IRQ: Update flag\n");
|
|
|
|
|
|
DEBUG(SHOW_QUEUE_INDEXES,
|
|
|
"CB drv Qs: [%i][%i][%i][%i][%i][%i]\n",
|
|
@@ -300,7 +300,7 @@ islpci_interrupt(int irq, void *config)
|
|
|
ISL38XX_CB_RX_DATA_LQ) != 0) {
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
DEBUG(SHOW_TRACING,
|
|
|
- "Received frame in Data Low Queue \n");
|
|
|
+ "Received frame in Data Low Queue\n");
|
|
|
#endif
|
|
|
islpci_eth_receive(priv);
|
|
|
}
|
|
@@ -325,7 +325,7 @@ islpci_interrupt(int irq, void *config)
|
|
|
/* Device has been initialized */
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
DEBUG(SHOW_TRACING,
|
|
|
- "IRQ: Init flag, device initialized \n");
|
|
|
+ "IRQ: Init flag, device initialized\n");
|
|
|
#endif
|
|
|
wake_up(&priv->reset_done);
|
|
|
}
|
|
@@ -333,7 +333,7 @@ islpci_interrupt(int irq, void *config)
|
|
|
if (reg & ISL38XX_INT_IDENT_SLEEP) {
|
|
|
/* Device intends to move to powersave state */
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
- DEBUG(SHOW_TRACING, "IRQ: Sleep flag \n");
|
|
|
+ DEBUG(SHOW_TRACING, "IRQ: Sleep flag\n");
|
|
|
#endif
|
|
|
isl38xx_handle_sleep_request(priv->control_block,
|
|
|
&powerstate,
|
|
@@ -343,7 +343,7 @@ islpci_interrupt(int irq, void *config)
|
|
|
if (reg & ISL38XX_INT_IDENT_WAKEUP) {
|
|
|
/* Device has been woken up to active state */
|
|
|
#if VERBOSE > SHOW_ERROR_MESSAGES
|
|
|
- DEBUG(SHOW_TRACING, "IRQ: Wakeup flag \n");
|
|
|
+ DEBUG(SHOW_TRACING, "IRQ: Wakeup flag\n");
|
|
|
#endif
|
|
|
|
|
|
isl38xx_handle_wakeup(priv->control_block,
|
|
@@ -634,7 +634,7 @@ islpci_alloc_memory(islpci_private *priv)
|
|
|
ioremap(pci_resource_start(priv->pdev, 0),
|
|
|
ISL38XX_PCI_MEM_SIZE))) {
|
|
|
/* error in remapping the PCI device memory address range */
|
|
|
- printk(KERN_ERR "PCI memory remapping failed \n");
|
|
|
+ printk(KERN_ERR "PCI memory remapping failed\n");
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
@@ -901,7 +901,7 @@ islpci_setup(struct pci_dev *pdev)
|
|
|
|
|
|
if (register_netdev(ndev)) {
|
|
|
DEBUG(SHOW_ERROR_MESSAGES,
|
|
|
- "ERROR: register_netdev() failed \n");
|
|
|
+ "ERROR: register_netdev() failed\n");
|
|
|
goto do_islpci_free_memory;
|
|
|
}
|
|
|
|