rtc: gemini: add return value validation
authorPan Bian <bianpan2016@163.com>
Sun, 23 Apr 2017 12:48:07 +0000 (20:48 +0800)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Thu, 4 May 2017 22:43:52 +0000 (00:43 +0200)
commit332e0d13d3c7d1e4394a513585a3d3b15a0030b8
tree66080a3ed68c4ac691b964ce4a9f1bd43861f466
parent758929005f06f954b7e1c87a1c9fdb44157b228f
rtc: gemini: add return value validation

Function devm_ioremap() will return a NULL pointer if it fails to remap
IO address, and its return value should be validated before it is used.
However, in function gemini_rtc_probe(), its return value is not
checked. This may result in bad memory access bugs on future access,
e.g. calling the function gemini_rtc_read_time().

Signed-off-by: Pan Bian <bianpan2016@163.com>
Acked-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-gemini.c