Commit 4eab7a9e authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Drivers: thermal: remove __dev* attributes.

CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
markings need to be removed.

This change removes the use of __devinit, __devexit_p, __devinitdata,
and __devexit from these drivers.

Based on patches originally written by Bill Pemberton, but redone by me
in order to handle some of the coding style issues better, by hand.

Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 59a609a9
...@@ -832,7 +832,7 @@ static inline struct exynos_tmu_platform_data *exynos_get_driver_data( ...@@ -832,7 +832,7 @@ static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
return (struct exynos_tmu_platform_data *) return (struct exynos_tmu_platform_data *)
platform_get_device_id(pdev)->driver_data; platform_get_device_id(pdev)->driver_data;
} }
static int __devinit exynos_tmu_probe(struct platform_device *pdev) static int exynos_tmu_probe(struct platform_device *pdev)
{ {
struct exynos_tmu_data *data; struct exynos_tmu_data *data;
struct exynos_tmu_platform_data *pdata = pdev->dev.platform_data; struct exynos_tmu_platform_data *pdata = pdev->dev.platform_data;
...@@ -937,7 +937,7 @@ static int __devinit exynos_tmu_probe(struct platform_device *pdev) ...@@ -937,7 +937,7 @@ static int __devinit exynos_tmu_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __devexit exynos_tmu_remove(struct platform_device *pdev) static int exynos_tmu_remove(struct platform_device *pdev)
{ {
struct exynos_tmu_data *data = platform_get_drvdata(pdev); struct exynos_tmu_data *data = platform_get_drvdata(pdev);
...@@ -985,7 +985,7 @@ static struct platform_driver exynos_tmu_driver = { ...@@ -985,7 +985,7 @@ static struct platform_driver exynos_tmu_driver = {
.of_match_table = exynos_tmu_match, .of_match_table = exynos_tmu_match,
}, },
.probe = exynos_tmu_probe, .probe = exynos_tmu_probe,
.remove = __devexit_p(exynos_tmu_remove), .remove = exynos_tmu_remove,
.id_table = exynos_tmu_driver_ids, .id_table = exynos_tmu_driver_ids,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment