Commit 9a62f73b authored by John W. Linville's avatar John W. Linville Committed by David S. Miller

iwlwifi: remove redundant initialization of final_mode

Problem identified by Miguel Botón <mboton.lkml@gmail.com>, alternate
solution suggested by Zhu Yi <yi.zhu@intel.com>, patch by me. :-)

Cc: Miguel Botón <mboton.lkml@gmail.com>
Cc: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d3c319f9
...@@ -2139,7 +2139,7 @@ static int iwl3945_update_power_cmd(struct iwl3945_priv *priv, ...@@ -2139,7 +2139,7 @@ static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode) static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
{ {
u32 final_mode = mode; u32 uninitialized_var(final_mode);
int rc; int rc;
struct iwl3945_powertable_cmd cmd; struct iwl3945_powertable_cmd cmd;
......
...@@ -2218,7 +2218,7 @@ static int iwl4965_update_power_cmd(struct iwl4965_priv *priv, ...@@ -2218,7 +2218,7 @@ static int iwl4965_update_power_cmd(struct iwl4965_priv *priv,
static int iwl4965_send_power_mode(struct iwl4965_priv *priv, u32 mode) static int iwl4965_send_power_mode(struct iwl4965_priv *priv, u32 mode)
{ {
u32 final_mode = mode; u32 uninitialized_var(final_mode);
int rc; int rc;
struct iwl4965_powertable_cmd cmd; struct iwl4965_powertable_cmd cmd;
......
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