iwlagn: fix misplaced bracket
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
This commit is contained in:
parent
bcd4fe2f9e
commit
807caf261c
1 changed files with 3 additions and 1 deletions
|
@ -3488,7 +3488,9 @@ int iwl_probe(void *bus_specific, struct iwl_bus_ops *bus_ops,
|
||||||
hw = iwl_alloc_all(cfg);
|
hw = iwl_alloc_all(cfg);
|
||||||
if (!hw) {
|
if (!hw) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto out; }
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
priv = hw->priv;
|
priv = hw->priv;
|
||||||
|
|
||||||
priv->bus.priv = priv;
|
priv->bus.priv = priv;
|
||||||
|
|
Loading…
Reference in a new issue