diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-21 14:01:13 +0530 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2014-01-28 21:26:31 +0100 |
commit | 15edd9eedd61ac7be53d63ffa6a7208d4479cece (patch) | |
tree | 54c4101ad6452dcada107392424374aa2597f067 /drivers | |
parent | 7bb5be947e5a32f3b4c1c5cad3bf47e9b5a26db0 (diff) | |
download | linux-15edd9eedd61ac7be53d63ffa6a7208d4479cece.tar.bz2 |
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')
-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 = { .name = "sirfsoc-wdt", .owner = THIS_MODULE, .pm = &sirfsoc_wdt_pm_ops, - .of_match_table = of_match_ptr(sirfsoc_wdt_of_match), + .of_match_table = sirfsoc_wdt_of_match, }, .probe = sirfsoc_wdt_probe, .remove = sirfsoc_wdt_remove, |