diff options
Diffstat (limited to 'drivers/char/hvc_vio.c')
-rw-r--r-- | drivers/char/hvc_vio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/hvc_vio.c b/drivers/char/hvc_vio.c index c72b994652ac..10be343d6ae7 100644 --- a/drivers/char/hvc_vio.c +++ b/drivers/char/hvc_vio.c | |||
@@ -120,7 +120,7 @@ static struct vio_driver hvc_vio_driver = { | |||
120 | } | 120 | } |
121 | }; | 121 | }; |
122 | 122 | ||
123 | static int hvc_vio_init(void) | 123 | static int __init hvc_vio_init(void) |
124 | { | 124 | { |
125 | int rc; | 125 | int rc; |
126 | 126 | ||
@@ -134,7 +134,7 @@ static int hvc_vio_init(void) | |||
134 | } | 134 | } |
135 | module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */ | 135 | module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */ |
136 | 136 | ||
137 | static void hvc_vio_exit(void) | 137 | static void __exit hvc_vio_exit(void) |
138 | { | 138 | { |
139 | vio_unregister_driver(&hvc_vio_driver); | 139 | vio_unregister_driver(&hvc_vio_driver); |
140 | } | 140 | } |