From b57287ba497b63a0d87a058631bbddfed9392e9f Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Wed, 5 Oct 2011 16:01:38 +0800 Subject: video: platinumfb: Add __devexit_p at necessary place According to the comments in include/linux/init.h: "Pointers to __devexit functions must use __devexit_p(function_name), the wrapper will insert either the function_name or NULL, depending on the config options." We have __devexit annotation for platinumfb_remove(), thus add __devexit_p at necessary place. Signed-off-by: Axel Lin Signed-off-by: Florian Tobias Schandinat --- drivers/video/platinumfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/video/platinumfb.c') diff --git a/drivers/video/platinumfb.c b/drivers/video/platinumfb.c index 66949232f85c..ae3caa6755c2 100644 --- a/drivers/video/platinumfb.c +++ b/drivers/video/platinumfb.c @@ -683,7 +683,7 @@ static struct platform_driver platinum_driver = .of_match_table = platinumfb_match, }, .probe = platinumfb_probe, - .remove = platinumfb_remove, + .remove = __devexit_p(platinumfb_remove), }; static int __init platinumfb_init(void) -- cgit v1.2.3-55-g7522