diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-21 03:31:13 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2014-01-28 15:26:31 -0500 |
commit | 15edd9eedd61ac7be53d63ffa6a7208d4479cece (patch) | |
tree | 54c4101ad6452dcada107392424374aa2597f067 /drivers/watchdog | |
parent | 7bb5be947e5a32f3b4c1c5cad3bf47e9b5a26db0 (diff) |
watchdog: sirf: Remove redundant of_match_ptr helper
'sirfsoc_wdt_of_match' is always compiled in. Hence the
helper macro is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/sirfsoc_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/sirfsoc_wdt.c b/drivers/watchdog/sirfsoc_wdt.c index ced3edc95957..702d07870808 100644 --- a/drivers/watchdog/sirfsoc_wdt.c +++ b/drivers/watchdog/sirfsoc_wdt.c | |||
@@ -212,7 +212,7 @@ static struct platform_driver sirfsoc_wdt_driver = { | |||
212 | .name = "sirfsoc-wdt", | 212 | .name = "sirfsoc-wdt", |
213 | .owner = THIS_MODULE, | 213 | .owner = THIS_MODULE, |
214 | .pm = &sirfsoc_wdt_pm_ops, | 214 | .pm = &sirfsoc_wdt_pm_ops, |
215 | .of_match_table = of_match_ptr(sirfsoc_wdt_of_match), | 215 | .of_match_table = sirfsoc_wdt_of_match, |
216 | }, | 216 | }, |
217 | .probe = sirfsoc_wdt_probe, | 217 | .probe = sirfsoc_wdt_probe, |
218 | .remove = sirfsoc_wdt_remove, | 218 | .remove = sirfsoc_wdt_remove, |