From: Alexander Guy Date: Thu, 12 Apr 2012 19:26:49 +0000 (-0700) Subject: skeletonfb: fixed module exit function typo. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=366ee7c2289cc307259166fe8c2f093920c1e575;p=linux-beck.git skeletonfb: fixed module exit function typo. Signed-off-by: Alexander Guy Signed-off-by: Florian Tobias Schandinat --- diff --git a/drivers/video/skeletonfb.c b/drivers/video/skeletonfb.c index 30f7a815a62b..5b6abc6de84b 100644 --- a/drivers/video/skeletonfb.c +++ b/drivers/video/skeletonfb.c @@ -1036,6 +1036,6 @@ static void __exit xxxfb_exit(void) */ module_init(xxxfb_init); -module_exit(xxxfb_remove); +module_exit(xxxfb_exit); MODULE_LICENSE("GPL");