aboutsummaryrefslogtreecommitdiffstats
path: root/net/phonet/pn_dev.c
diff options
context:
space:
mode:
authorremi.denis-courmont@nokia <remi.denis-courmont@nokia>2009-01-22 22:00:28 -0500
committerDavid S. Miller <davem@davemloft.net>2009-01-27 00:03:34 -0500
commit660f706d931d4795d341805e083a8091af74fa88 (patch)
treeac5cc51b70b0c30c1835362eaf883df965bb27f9 /net/phonet/pn_dev.c
parent76e02cf6945e6faa9f6b546dc0513512197c5966 (diff)
Phonet: handle rtnetlink registration failure
Signed-off-by: RĂ©mi Denis-Courmont <remi.denis-courmont@nokia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/phonet/pn_dev.c')
-rw-r--r--net/phonet/pn_dev.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/net/phonet/pn_dev.c b/net/phonet/pn_dev.c
index af49db01d634..fd418107652b 100644
--- a/net/phonet/pn_dev.c
+++ b/net/phonet/pn_dev.c
@@ -190,9 +190,13 @@ static struct notifier_block phonet_device_notifier = {
190/* Initialize Phonet devices list */ 190/* Initialize Phonet devices list */
191int __init phonet_device_init(void) 191int __init phonet_device_init(void)
192{ 192{
193 int err;
194
193 register_netdevice_notifier(&phonet_device_notifier); 195 register_netdevice_notifier(&phonet_device_notifier);
194 phonet_netlink_register(); 196 err = phonet_netlink_register();
195 return 0; 197 if (err)
198 phonet_device_exit();
199 return err;
196} 200}
197 201
198void phonet_device_exit(void) 202void phonet_device_exit(void)