aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/caif/caif_dev.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/caif/caif_dev.c b/net/caif/caif_dev.c
index 7f9ac0742d19..47fc8f3a47cf 100644
--- a/net/caif/caif_dev.c
+++ b/net/caif/caif_dev.c
@@ -212,8 +212,7 @@ static int caif_device_notify(struct notifier_block *me, unsigned long what,
212 enum cfcnfg_phy_preference pref; 212 enum cfcnfg_phy_preference pref;
213 enum cfcnfg_phy_type phy_type; 213 enum cfcnfg_phy_type phy_type;
214 struct cfcnfg *cfg; 214 struct cfcnfg *cfg;
215 struct caif_device_entry_list *caifdevs = 215 struct caif_device_entry_list *caifdevs;
216 caif_device_list(dev_net(dev));
217 216
218 if (dev->type != ARPHRD_CAIF) 217 if (dev->type != ARPHRD_CAIF)
219 return 0; 218 return 0;
@@ -222,6 +221,8 @@ static int caif_device_notify(struct notifier_block *me, unsigned long what,
222 if (cfg == NULL) 221 if (cfg == NULL)
223 return 0; 222 return 0;
224 223
224 caifdevs = caif_device_list(dev_net(dev));
225
225 switch (what) { 226 switch (what) {
226 case NETDEV_REGISTER: 227 case NETDEV_REGISTER:
227 caifd = caif_device_alloc(dev); 228 caifd = caif_device_alloc(dev);