diff options
author | Andrey Ryabinin <a.ryabinin@samsung.com> | 2015-01-26 12:58:46 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-02-05 22:36:07 -0800 |
commit | 198bcce84a87bb9dcdb754d25252b69d7cbe855b (patch) | |
tree | d2c6e4a7e18e4b5578027aa7e191d358b0141f17 /drivers/rtc | |
parent | 072ef65108c3fe4d4371da6037922a805c1a9001 (diff) | |
download | linux-stable-198bcce84a87bb9dcdb754d25252b69d7cbe855b.tar.gz linux-stable-198bcce84a87bb9dcdb754d25252b69d7cbe855b.tar.bz2 linux-stable-198bcce84a87bb9dcdb754d25252b69d7cbe855b.zip |
drivers/rtc/rtc-s5m.c: terminate s5m_rtc_id array with empty element
commit 45cd15e600ec8006305ce83f62c7208c2cb7a052 upstream.
Array of platform_device_id elements should be terminated with empty
element.
Fixes: 5bccae6ec458 ("rtc: s5m-rtc: add real-time clock driver for s5m8767")
Signed-off-by: Andrey Ryabinin <a.ryabinin@samsung.com>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-s5m.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-s5m.c b/drivers/rtc/rtc-s5m.c index 8754c33361e8..28799d39db8e 100644 --- a/drivers/rtc/rtc-s5m.c +++ b/drivers/rtc/rtc-s5m.c @@ -832,6 +832,7 @@ static SIMPLE_DEV_PM_OPS(s5m_rtc_pm_ops, s5m_rtc_suspend, s5m_rtc_resume); static const struct platform_device_id s5m_rtc_id[] = { { "s5m-rtc", S5M8767X }, { "s2mps14-rtc", S2MPS14X }, + { }, }; static struct platform_driver s5m_rtc_driver = { |