diff options
author | Luca Coelho <luciano.coelho@intel.com> | 2019-02-14 09:59:27 +0300 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2019-03-22 13:59:42 +0300 |
commit | a2a120a9cdf13fa96b68f9d16f50d05e5a2c510e (patch) | |
tree | 290942096601ad1d3ec9eab4f4f2936fbaeda194 /drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c | |
parent | 78d722b1bdd96b31bbe886a2cb2e69ce7b350347 (diff) | |
download | linux-a2a120a9cdf13fa96b68f9d16f50d05e5a2c510e.tar.xz |
iwlwifi: remove unnecessary goto out in iwl_parse_nvm_mcc_info()
This goto out was unnecessary because the out label was immediately
below it. Remove it.
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c b/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c index 2d11fc0e351f..e8ee510fdd4b 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c +++ b/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c @@ -1193,10 +1193,8 @@ iwl_parse_nvm_mcc_info(struct device *dev, const struct iwl_cfg *cfg, */ copy_rd = kmemdup(regd, struct_size(regd, reg_rules, valid_rules), GFP_KERNEL); - if (!copy_rd) { + if (!copy_rd) copy_rd = ERR_PTR(-ENOMEM); - goto out; - } out: kfree(regdb_ptrs); |