Phonet: allow phonet_device_init() to fail, put it to __init section

Signed-off-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
remi.denis-courmont@nokia
2009-01-23 03:00:27 +00:00
committed by David S. Miller
parent 4b8f704bea
commit 76e02cf694
4 changed files with 11 additions and 6 deletions

View File

@ -188,9 +188,11 @@ static struct notifier_block phonet_device_notifier = {
};
/* Initialize Phonet devices list */
void phonet_device_init(void)
int __init phonet_device_init(void)
{
register_netdevice_notifier(&phonet_device_notifier);
phonet_netlink_register();
return 0;
}
void phonet_device_exit(void)