2012-10-22 11:19:12

by Jonghwan Choi

[permalink] [raw]
Subject: [PATCH] thermal: exynos: Fix wrong name of MODULE_DEVICE_TABLE

exynos4_tmu_driver_ids should be exynos_tmu_driver_ids.

Signed-off-by: Jonghwan Choi <[email protected]>
---
drivers/thermal/exynos_thermal.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/thermal/exynos_thermal.c
b/drivers/thermal/exynos_thermal.c
index fd03e85..6dd29e4 100644
--- a/drivers/thermal/exynos_thermal.c
+++ b/drivers/thermal/exynos_thermal.c
@@ -815,7 +815,7 @@ static struct platform_device_id exynos_tmu_driver_ids[]
= {
},
{ },
};
-MODULE_DEVICE_TABLE(platform, exynos4_tmu_driver_ids);
+MODULE_DEVICE_TABLE(platform, exynos_tmu_driver_ids);

static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
struct platform_device *pdev)
--
1.7.1


2012-10-23 06:16:51

by Amit Kachhap

[permalink] [raw]
Subject: Re: [PATCH] thermal: exynos: Fix wrong name of MODULE_DEVICE_TABLE

On 22 October 2012 16:49, Jonghwan Choi <[email protected]> wrote:
> exynos4_tmu_driver_ids should be exynos_tmu_driver_ids.
>
> Signed-off-by: Jonghwan Choi <[email protected]>
> ---
> drivers/thermal/exynos_thermal.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/thermal/exynos_thermal.c
> b/drivers/thermal/exynos_thermal.c
> index fd03e85..6dd29e4 100644
> --- a/drivers/thermal/exynos_thermal.c
> +++ b/drivers/thermal/exynos_thermal.c
> @@ -815,7 +815,7 @@ static struct platform_device_id exynos_tmu_driver_ids[]
> = {
> },
> { },
> };
> -MODULE_DEVICE_TABLE(platform, exynos4_tmu_driver_ids);
> +MODULE_DEVICE_TABLE(platform, exynos_tmu_driver_ids);

Your changes looks fine. Adding the thermal maintainers.

Reviewed-by: Amit Daniel Kachhap <[email protected]>

Thanks,
Amit Daniel
>
> static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
> struct platform_device *pdev)
> --
> 1.7.1
>