aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/eepro.c
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2010-03-24 03:57:35 -0400
committerDavid S. Miller <davem@davemloft.net>2010-03-24 17:10:22 -0400
commitd6dbee861386cd3f4cee62bcf28597e63e251e0c (patch)
tree191bf8cf781719d30732f48d27393d7b41978d14 /drivers/net/eepro.c
parentc2bb1b9c7e862ecca2ffb20b1457034d2c401845 (diff)
net/intel: remove trailing space in messages
Includes one minor indentation fix to placate checkpatch. Signed-off-by: Frans Pop <elendil@planet.nl> Cc: e1000-devel@lists.sourceforge.net Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/eepro.c')
-rw-r--r--drivers/net/eepro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/eepro.c b/drivers/net/eepro.c
index 1b05bdf62c3c..15d6266b80c3 100644
--- a/drivers/net/eepro.c
+++ b/drivers/net/eepro.c
@@ -646,7 +646,7 @@ static void __init printEEPROMInfo(struct net_device *dev)
646 if (GetBit(Word,ee_PortTPE)) printk(KERN_DEBUG "TPE "); 646 if (GetBit(Word,ee_PortTPE)) printk(KERN_DEBUG "TPE ");
647 if (GetBit(Word,ee_PortBNC)) printk(KERN_DEBUG "BNC "); 647 if (GetBit(Word,ee_PortBNC)) printk(KERN_DEBUG "BNC ");
648 if (GetBit(Word,ee_PortAUI)) printk(KERN_DEBUG "AUI "); 648 if (GetBit(Word,ee_PortAUI)) printk(KERN_DEBUG "AUI ");
649 printk(KERN_DEBUG "port(s) \n"); 649 printk(KERN_DEBUG "port(s)\n");
650 650
651 Word = lp->word[6]; 651 Word = lp->word[6];
652 printk(KERN_DEBUG "Word6:\n"); 652 printk(KERN_DEBUG "Word6:\n");
@@ -766,7 +766,7 @@ static int __init eepro_probe1(struct net_device *dev, int autoprobe)
766 /* Grab the region so we can find another board if autoIRQ fails. */ 766 /* Grab the region so we can find another board if autoIRQ fails. */
767 if (!request_region(ioaddr, EEPRO_IO_EXTENT, DRV_NAME)) { 767 if (!request_region(ioaddr, EEPRO_IO_EXTENT, DRV_NAME)) {
768 if (!autoprobe) 768 if (!autoprobe)
769 printk(KERN_WARNING "EEPRO: io-port 0x%04x in use \n", 769 printk(KERN_WARNING "EEPRO: io-port 0x%04x in use\n",
770 ioaddr); 770 ioaddr);
771 return -EBUSY; 771 return -EBUSY;
772 } 772 }