From: Alexander Guy Date: Thu, 12 Apr 2012 19:26:49 +0000 (-0700) Subject: skeletonfb: fixed module exit function typo. X-Git-Tag: v3.5-rc1~7^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=366ee7c2289cc307259166fe8c2f093920c1e575;p=platform%2Fkernel%2Flinux-3.10.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 30f7a81..5b6abc6 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");