Commit 82bbcdeb authored by Joe Perches's avatar Joe Perches Committed by Jeff Kirsher

igb: Convert bare printk to pr_notice

printks should use KERN_ levels.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 876d2d6f
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
* e1000_82576 * e1000_82576
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/types.h> #include <linux/types.h>
#include <linux/if_ether.h> #include <linux/if_ether.h>
...@@ -244,8 +246,7 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw) ...@@ -244,8 +246,7 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw)
* Check for invalid size * Check for invalid size
*/ */
if ((hw->mac.type == e1000_82576) && (size > 15)) { if ((hw->mac.type == e1000_82576) && (size > 15)) {
printk("igb: The NVM size is not valid, " pr_notice("The NVM size is not valid, defaulting to 32K\n");
"defaulting to 32K.\n");
size = 15; size = 15;
} }
nvm->word_size = 1 << size; nvm->word_size = 1 << size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment