summary refs log tree commit diff
path: root/drivers
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-06-01 13:46:49 +0200
committerJean Delvare <khali@linux-fr.org>2009-06-01 13:46:49 +0200
commit39d8bbedb9571a89d638f5b05358f26ab503d7a6 (patch)
tree9868e75fa933a384d90e80c26ee369a6cf2cc8ad /drivers
parent3218911f839b6c85acbf872ad264ea69aa4d89ad (diff)
downloadlinux-39d8bbedb9571a89d638f5b05358f26ab503d7a6.tar.gz
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 <vapier@gentoo.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/hwmon/lm78.c2
1 files changed, 1 insertions, 1 deletions
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),
 };