Commit 9a888187 authored by David S. Miller's avatar David S. Miller

[ATM]: atm{pvc,svc}_exit cannot be __exit.

parent 69df940b
......@@ -121,7 +121,7 @@ int __init atmpvc_init(void)
return sock_register(&pvc_family_ops);
}
void __exit atmpvc_exit(void)
void atmpvc_exit(void)
{
sock_unregister(PF_ATMPVC);
}
......@@ -444,7 +444,7 @@ int __init atmsvc_init(void)
return sock_register(&svc_family_ops);
}
void __exit atmsvc_exit(void)
void atmsvc_exit(void)
{
sock_unregister(PF_ATMSVC);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment