diff options
author | remi.denis-courmont@nokia <remi.denis-courmont@nokia> | 2009-01-22 22:00:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-27 00:03:34 -0500 |
commit | 660f706d931d4795d341805e083a8091af74fa88 (patch) | |
tree | ac5cc51b70b0c30c1835362eaf883df965bb27f9 /net/phonet/pn_dev.c | |
parent | 76e02cf6945e6faa9f6b546dc0513512197c5966 (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.c | 8 |
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 */ |
191 | int __init phonet_device_init(void) | 191 | int __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 | ||
198 | void phonet_device_exit(void) | 202 | void phonet_device_exit(void) |