Commit 5798712d authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

drivers/video/amifb.c cleanups

This patch contains the following cleanups:
- make the needlessly global amifb_init() static
- rename cleanup_module() to amifb_exit(),
  make it static __exit,
  use module_exit(),
  there's no need to #ifdef MODULE it
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Acked-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 104b198d
...@@ -1136,7 +1136,6 @@ static int amifb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg ...@@ -1136,7 +1136,6 @@ static int amifb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg
* Interface to the low level console driver * Interface to the low level console driver
*/ */
int amifb_init(void);
static void amifb_deinit(void); static void amifb_deinit(void);
/* /*
...@@ -2248,7 +2247,7 @@ static inline void chipfree(void) ...@@ -2248,7 +2247,7 @@ static inline void chipfree(void)
* Initialisation * Initialisation
*/ */
int __init amifb_init(void) static int __init amifb_init(void)
{ {
int tag, i, err = 0; int tag, i, err = 0;
u_long chipptr; u_long chipptr;
...@@ -3793,16 +3792,14 @@ static void ami_rebuild_copper(void) ...@@ -3793,16 +3792,14 @@ static void ami_rebuild_copper(void)
} }
} }
static void __exit amifb_exit(void)
module_init(amifb_init);
#ifdef MODULE
MODULE_LICENSE("GPL");
void cleanup_module(void)
{ {
unregister_framebuffer(&fb_info); unregister_framebuffer(&fb_info);
amifb_deinit(); amifb_deinit();
amifb_video_off(); amifb_video_off();
} }
#endif /* MODULE */
module_init(amifb_init);
module_exit(amifb_exit);
MODULE_LICENSE("GPL");
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