projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c3a822
)
ixgbevf: Message formatting cleanups
author
Greg Rose
<gregory.v.rose@intel.com>
Fri, 19 Mar 2010 03:00:31 +0000
(
03:00
+0000)
committer
David S. Miller
<davem@davemloft.net>
Sat, 20 Mar 2010 04:00:45 +0000
(21:00 -0700)
Clean up some text output formatting.
Signed-off-by: Greg Rose <gregory.v.rose@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ixgbevf/ixgbevf_main.c
patch
|
blob
|
history
diff --git
a/drivers/net/ixgbevf/ixgbevf_main.c
b/drivers/net/ixgbevf/ixgbevf_main.c
index
3de93ae
..
d6cbd94
100644
(file)
--- a/
drivers/net/ixgbevf/ixgbevf_main.c
+++ b/
drivers/net/ixgbevf/ixgbevf_main.c
@@
-2419,7
+2419,7
@@
static void ixgbevf_watchdog_task(struct work_struct *work)
if (!netif_carrier_ok(netdev)) {
hw_dbg(&adapter->hw, "NIC Link is Up %s, ",
((link_speed == IXGBE_LINK_SPEED_10GB_FULL) ?
- "10 Gbps
" : "1 Gbps
"));
+ "10 Gbps
\n" : "1 Gbps\n
"));
netif_carrier_on(netdev);
netif_tx_wake_all_queues(netdev);
} else {
@@
-2695,7
+2695,7
@@
static int ixgbevf_open(struct net_device *netdev)
if (hw->adapter_stopped) {
err = IXGBE_ERR_MBX;
printk(KERN_ERR "Unable to start - perhaps the PF"
- "Driver isn't up yet\n");
+ "
Driver isn't up yet\n");
goto err_setup_reset;
}
}