wifi: iwlwifi: Remove prohibited spaces
authorSolomon Tan <solomonbstoner@protonmail.ch>
Tue, 14 Mar 2023 17:49:29 +0000 (19:49 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 15 Mar 2023 12:25:14 +0000 (13:25 +0100)
This patch addresses the error from checkpatch.pl regarding the presence
of prohibited spaces.

Signed-off-by: Solomon Tan <solomonbstoner@protonmail.ch>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230314194113.557d6841a166.I0957923fe9ea20c1ec9140477033548ccfe93e9a@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c

index aa8e08487b52a0d16b8801d8b9e97203b92a4627..923bbfc151dd6bf1082c40ec3c0c0914cf146828 100644 (file)
@@ -81,7 +81,7 @@ static const u16 iwl_nvm_channels[] = {
        /* 2.4 GHz */
        1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
        /* 5 GHz */
-       36, 40, 44 , 48, 52, 56, 60, 64,
+       36, 40, 44, 48, 52, 56, 60, 64,
        100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144,
        149, 153, 157, 161, 165
 };
index 85b99316d029a36f7417d8feff1d9c8b01586990..5790435dc69e8508b0c675cf86e547bca58492f3 100644 (file)
@@ -214,9 +214,9 @@ static ssize_t iwl_dbgfs_set_nic_temperature_read(struct file *file,
        int pos;
 
        if (!mvm->temperature_test)
-               pos = scnprintf(buf , sizeof(buf), "disabled\n");
+               pos = scnprintf(buf, sizeof(buf), "disabled\n");
        else
-               pos = scnprintf(buf , sizeof(buf), "%d\n", mvm->temperature);
+               pos = scnprintf(buf, sizeof(buf), "%d\n", mvm->temperature);
 
        return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
 }
@@ -261,7 +261,7 @@ static ssize_t iwl_dbgfs_set_nic_temperature_write(struct iwl_mvm *mvm,
                mvm->temperature = temperature;
        }
        IWL_DEBUG_TEMP(mvm, "%sabling debug set temperature (temp = %d)\n",
-                      mvm->temperature_test ? "En" : "Dis" ,
+                      mvm->temperature_test ? "En" : "Dis",
                       mvm->temperature);
        /* handle the temperature change */
        iwl_mvm_tt_handler(mvm);
@@ -291,7 +291,7 @@ static ssize_t iwl_dbgfs_nic_temp_read(struct file *file,
        if (ret)
                return -EIO;
 
-       pos = scnprintf(buf , sizeof(buf), "%d\n", temp);
+       pos = scnprintf(buf, sizeof(buf), "%d\n", temp);
 
        return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
 }