From: Mike Frysinger Date: Mon, 1 Jun 2009 11:46:49 +0000 (+0200) Subject: hwmon: (lm78) Add missing __devexit_p() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=39d8bbedb9571a89d638f5b05358f26ab503d7a6;p=deliverable%2Flinux.git hwmon: (lm78) Add missing __devexit_p() The remove function uses __devexit, so the .remove assignment needs __devexit_p() to fix a build error with hotplug disabled. Signed-off-by: Mike Frysinger Signed-off-by: Jean Delvare --- diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index b5e3b2851698..a1787fdf5b9f 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c @@ -182,7 +182,7 @@ static struct platform_driver lm78_isa_driver = { .name = "lm78", }, .probe = lm78_isa_probe, - .remove = lm78_isa_remove, + .remove = __devexit_p(lm78_isa_remove), };