Commit ade4162e authored by Sasha Neftin's avatar Sasha Neftin Committed by Tony Nguyen

e1000e: Add space to the debug print

Minor fixes to allow debug prints more readable.
Signed-off-by: default avatarSasha Neftin <sasha.neftin@intel.com>
Tested-by: default avatarDvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 8e25c0a2
......@@ -1269,9 +1269,11 @@ static s32 e1000_disable_ulp_lpt_lp(struct e1000_hw *hw, bool force)
usleep_range(10000, 11000);
}
if (firmware_bug)
e_warn("ULP_CONFIG_DONE took %dmsec. This is a firmware bug\n", i * 10);
e_warn("ULP_CONFIG_DONE took %d msec. This is a firmware bug\n",
i * 10);
else
e_dbg("ULP_CONFIG_DONE cleared after %dmsec\n", i * 10);
e_dbg("ULP_CONFIG_DONE cleared after %d msec\n",
i * 10);
if (force) {
mac_reg = er32(H2ME);
......
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