diff options
Diffstat (limited to 'drivers/hwmon/sht15.c')
-rw-r--r-- | drivers/hwmon/sht15.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/hwmon/sht15.c b/drivers/hwmon/sht15.c index 303c02694c3c..ebe38b680ee3 100644 --- a/drivers/hwmon/sht15.c +++ b/drivers/hwmon/sht15.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/hwmon-sysfs.h> | 30 | #include <linux/hwmon-sysfs.h> |
31 | #include <linux/mutex.h> | 31 | #include <linux/mutex.h> |
32 | #include <linux/platform_device.h> | 32 | #include <linux/platform_device.h> |
33 | #include <linux/sched.h> | ||
33 | #include <linux/delay.h> | 34 | #include <linux/delay.h> |
34 | #include <linux/jiffies.h> | 35 | #include <linux/jiffies.h> |
35 | #include <linux/err.h> | 36 | #include <linux/err.h> |
@@ -622,7 +623,12 @@ static int __devexit sht15_remove(struct platform_device *pdev) | |||
622 | } | 623 | } |
623 | 624 | ||
624 | 625 | ||
625 | static struct platform_driver sht_drivers[] = { | 626 | /* |
627 | * sht_drivers simultaneously refers to __devinit and __devexit function | ||
628 | * which causes spurious section mismatch warning. So use __refdata to | ||
629 | * get rid from this. | ||
630 | */ | ||
631 | static struct platform_driver __refdata sht_drivers[] = { | ||
626 | { | 632 | { |
627 | .driver = { | 633 | .driver = { |
628 | .name = "sht10", | 634 | .name = "sht10", |