aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2008-09-22 17:52:22 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-09-24 22:05:26 -0400
commit6c2a9efadec464f848b18216e41783d3c01c7d10 (patch)
treed019f8d87ac30fb3ec27b3ccd73d33dbf8cd063d /drivers/net/e1000e
parenta4e77d063d61e4703db813470fefe90dac672b55 (diff)
e1000e: avoid duplicated output of device name in kernel warning
With 2.6.27-rc3 I noticed the following messages in my boot log: 0000:01:00.0: 0000:01:00.0: Warning: detected DSPD enabled in EEPROM 0000:01:00.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:16:76:04:ff:09 The second seems correct, but the first has a silly repetition of the PCI device before the actual message. The message originates from e1000_eeprom_checks in e1000e/netdev.c. With this patch below the first message becomes e1000e 0000:01:00.0: Warning: detected DSPD enabled in EEPROM which makes it similar to directly preceding messages. Use dev_warn instead of e_warn in e1000_eeprom_checks() as the interface name has not yet been assigned at that point. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Frans Pop <elendil@planet.nl> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/e1000e')
-rw-r--r--drivers/net/e1000e/netdev.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c
index 0925204cd2d8..24d05cb70055 100644
--- a/drivers/net/e1000e/netdev.c
+++ b/drivers/net/e1000e/netdev.c
@@ -4671,13 +4671,15 @@ static void e1000_eeprom_checks(struct e1000_adapter *adapter)
4671 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf); 4671 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
4672 if (!(le16_to_cpu(buf) & (1 << 0))) { 4672 if (!(le16_to_cpu(buf) & (1 << 0))) {
4673 /* Deep Smart Power Down (DSPD) */ 4673 /* Deep Smart Power Down (DSPD) */
4674 e_warn("Warning: detected DSPD enabled in EEPROM\n"); 4674 dev_warn(&adapter->pdev->dev,
4675 "Warning: detected DSPD enabled in EEPROM\n");
4675 } 4676 }
4676 4677
4677 ret_val = e1000_read_nvm(hw, NVM_INIT_3GIO_3, 1, &buf); 4678 ret_val = e1000_read_nvm(hw, NVM_INIT_3GIO_3, 1, &buf);
4678 if (le16_to_cpu(buf) & (3 << 2)) { 4679 if (le16_to_cpu(buf) & (3 << 2)) {
4679 /* ASPM enable */ 4680 /* ASPM enable */
4680 e_warn("Warning: detected ASPM enabled in EEPROM\n"); 4681 dev_warn(&adapter->pdev->dev,
4682 "Warning: detected ASPM enabled in EEPROM\n");
4681 } 4683 }
4682} 4684}
4683 4685