diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-11-12 18:10:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:30 -0500 |
commit | d149632e037e1d84a058c1e70666d4ced10ae156 (patch) | |
tree | 1ccea55508d3661176cba8a3e08dbe3657489a1f | |
parent | 616b734130af858e9e9dce57c9f49ebc75b19869 (diff) |
drivers/rtc/rtc-sirfsoc.c: remove redundant of_match_ptr
The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/rtc/rtc-sirfsoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-sirfsoc.c b/drivers/rtc/rtc-sirfsoc.c index de132b4acd66..3eb3642ae299 100644 --- a/drivers/rtc/rtc-sirfsoc.c +++ b/drivers/rtc/rtc-sirfsoc.c | |||
@@ -458,7 +458,7 @@ static struct platform_driver sirfsoc_rtc_driver = { | |||
458 | #ifdef CONFIG_PM | 458 | #ifdef CONFIG_PM |
459 | .pm = &sirfsoc_rtc_pm_ops, | 459 | .pm = &sirfsoc_rtc_pm_ops, |
460 | #endif | 460 | #endif |
461 | .of_match_table = of_match_ptr(sirfsoc_rtc_of_match), | 461 | .of_match_table = sirfsoc_rtc_of_match, |
462 | }, | 462 | }, |
463 | .probe = sirfsoc_rtc_probe, | 463 | .probe = sirfsoc_rtc_probe, |
464 | .remove = sirfsoc_rtc_remove, | 464 | .remove = sirfsoc_rtc_remove, |