]> git.dujemihanovic.xyz Git - linux.git/commitdiff
e1000e: Add space to the debug print
authorSasha Neftin <sasha.neftin@intel.com>
Wed, 16 Jun 2021 04:19:30 +0000 (07:19 +0300)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Tue, 20 Jul 2021 23:11:36 +0000 (16:11 -0700)
Minor fixes to allow debug prints more readable.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Dvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/e1000e/ich8lan.c

index b75196c6a29b898b2534afd73f9e5204c20c5922..2f97c9f5611daf8124cedacaab39e2fdaac1f91b 100644 (file)
@@ -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);