diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-12-12 15:54:24 +0530 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-01-04 15:38:55 +0800 |
commit | caa5cbd5a18a72bb6f5a5211ddeade71fdb2282d (patch) | |
tree | 54f1c72b722e4128fd2b5d0300874950882ac8dd /drivers/thermal | |
parent | 03b79bda8d061d80a6106e257c072a2754141bab (diff) | |
download | linux-3.10-caa5cbd5a18a72bb6f5a5211ddeade71fdb2282d.tar.gz linux-3.10-caa5cbd5a18a72bb6f5a5211ddeade71fdb2282d.tar.bz2 linux-3.10-caa5cbd5a18a72bb6f5a5211ddeade71fdb2282d.zip |
thermal: exynos: Use of_match_ptr() macro
This eliminates having an #ifdef returning NULL for the case
when OF is disabled.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/exynos_thermal.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/thermal/exynos_thermal.c b/drivers/thermal/exynos_thermal.c index e2ef8a3531a..327102a4596 100644 --- a/drivers/thermal/exynos_thermal.c +++ b/drivers/thermal/exynos_thermal.c @@ -808,8 +808,6 @@ static const struct of_device_id exynos_tmu_match[] = { {}, }; MODULE_DEVICE_TABLE(of, exynos_tmu_match); -#else -#define exynos_tmu_match NULL #endif static struct platform_device_id exynos_tmu_driver_ids[] = { @@ -1085,7 +1083,7 @@ static struct platform_driver exynos_tmu_driver = { .name = "exynos-tmu", .owner = THIS_MODULE, .pm = EXYNOS_TMU_PM, - .of_match_table = exynos_tmu_match, + .of_match_table = of_match_ptr(exynos_tmu_match), }, .probe = exynos_tmu_probe, .remove = __devexit_p(exynos_tmu_remove), |