aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2009-06-29 22:23:53 -0400
committerDavid S. Miller <davem@davemloft.net>2009-06-29 22:23:53 -0400
commit9c0346bd0891eb009f5cd08b868ff41c65804dbe (patch)
tree51dcbdfc4895e81f60f37fe2e5b59b1207fe5c2b
parent53bd9728bf9be7fc3b3147e821dbeb71d767c354 (diff)
parentdfd06fe8246c0425f8d6850b8e2c872b0d691ec3 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan
-rw-r--r--MAINTAINERS2
-rw-r--r--net/ieee802154/netlink.c6
2 files changed, 7 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index fa2a16def17a..28c150e916a2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2886,7 +2886,7 @@ P: Dmitry Eremin-Solenikov
2886M: dbaryshkov@gmail.com 2886M: dbaryshkov@gmail.com
2887P: Sergey Lapin 2887P: Sergey Lapin
2888M: slapin@ossfans.org 2888M: slapin@ossfans.org
2889L: linux-zigbee-devel@lists.sourceforge.net 2889L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
2890W: http://apps.sourceforge.net/trac/linux-zigbee 2890W: http://apps.sourceforge.net/trac/linux-zigbee
2891T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git 2891T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
2892S: Maintained 2892S: Maintained
diff --git a/net/ieee802154/netlink.c b/net/ieee802154/netlink.c
index 105ad10876af..27eda9fdf3c2 100644
--- a/net/ieee802154/netlink.c
+++ b/net/ieee802154/netlink.c
@@ -276,6 +276,9 @@ static struct net_device *ieee802154_nl_get_dev(struct genl_info *info)
276 else 276 else
277 return NULL; 277 return NULL;
278 278
279 if (!dev)
280 return NULL;
281
279 if (dev->type != ARPHRD_IEEE802154) { 282 if (dev->type != ARPHRD_IEEE802154) {
280 dev_put(dev); 283 dev_put(dev);
281 return NULL; 284 return NULL;
@@ -521,3 +524,6 @@ static void __exit ieee802154_nl_exit(void)
521} 524}
522module_exit(ieee802154_nl_exit); 525module_exit(ieee802154_nl_exit);
523 526
527MODULE_LICENSE("GPL v2");
528MODULE_DESCRIPTION("ieee 802.15.4 configuration interface");
529