diff options
author | Sachin Kamat <[email protected]> | 2013-05-16 10:28:11 +0000 |
---|---|---|
committer | Zhang Rui <[email protected]> | 2013-05-28 10:45:35 +0800 |
commit | 5454f211ddc2a8ebc1eb20aa3866c4e9cf11405f (patch) | |
tree | 2433be8d61effe8c10fc7185f829012a731cf342 | |
parent | 90c3194e474fe00240a441a7321b1fe37d3441aa (diff) |
Thermal: spear: Remove redundant use of of_match_ptr
'spear_thermal_id_table' is always compiled in and the driver
is dependent on OF. Hence use of of_match_ptr is unnecessary.
Signed-off-by: Sachin Kamat <[email protected]>
Cc: Vincenzo Frascino <[email protected]>
Cc: Viresh Kumar <[email protected]>
Acked-by: Viresh Kumar <[email protected]>
Acked-by: Eduardo Valentin <[email protected]>
Signed-off-by: Zhang Rui <[email protected]>
-rw-r--r-- | drivers/thermal/spear_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/spear_thermal.c b/drivers/thermal/spear_thermal.c index 3c5ee5607977..838aff29b9d8 100644 --- a/drivers/thermal/spear_thermal.c +++ b/drivers/thermal/spear_thermal.c @@ -198,7 +198,7 @@ static struct platform_driver spear_thermal_driver = { .name = "spear_thermal", .owner = THIS_MODULE, .pm = &spear_thermal_pm_ops, - .of_match_table = of_match_ptr(spear_thermal_id_table), + .of_match_table = spear_thermal_id_table, }, }; |