diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-05-26 06:01:54 -0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-05-27 05:24:54 -0400 |
commit | 582e1b270f6db93007f9af86d4f28fdad3da0505 (patch) | |
tree | 3328607f175a014556f486ead4c2ded414d02ef0 /drivers/hwmon | |
parent | eec752b2b99c794766926a9bac59b0d7df5b09c2 (diff) |
hwmon: (coretemp) Fix section mismatch
chk_ucode_version() is only called from coretemp_probe() which is
__devinit, so it can be marked __devinit too.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Durgadoss R <durgadoss.r@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Guenter Roeck <guenter.roeck@ericsson.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/coretemp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index 833d51ff43b3..de3d2465fe24 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c | |||
@@ -424,7 +424,7 @@ static void update_ttarget(__u8 cpu_model, struct temp_data *tdata, | |||
424 | } | 424 | } |
425 | } | 425 | } |
426 | 426 | ||
427 | static int chk_ucode_version(struct platform_device *pdev) | 427 | static int __devinit chk_ucode_version(struct platform_device *pdev) |
428 | { | 428 | { |
429 | struct cpuinfo_x86 *c = &cpu_data(pdev->id); | 429 | struct cpuinfo_x86 *c = &cpu_data(pdev->id); |
430 | int err; | 430 | int err; |