Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts: Documentation/feature-removal-schedule.txt drivers/net/wireless/ath/ath5k/phy.c drivers/net/wireless/wl12xx/wl1271_main.c
This commit is contained in:
@@ -228,14 +228,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",
|
||||
@@ -301,7 +301,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);
|
||||
}
|
||||
@@ -326,7 +326,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);
|
||||
}
|
||||
@@ -334,7 +334,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,
|
||||
@@ -344,7 +344,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,
|
||||
@@ -635,7 +635,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;
|
||||
}
|
||||
|
||||
@@ -902,7 +902,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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user