rtc: zynqmp: fix possible race condition
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 3 Mar 2019 21:24:44 +0000 (22:24 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 3 Mar 2019 21:36:19 +0000 (22:36 +0100)
commitb8541798a8a6a288cb2f5c540bf5270e118c0b0c
tree553031add6f3c275124cac1c52df61bce7527b57
parent30adde6b181104249fb6c17b72a9bf12332bc053
rtc: zynqmp: fix possible race condition

The IRQ is requested before the struct rtc is allocated and registered, but
this struct is used in the IRQ handler. This may lead to a NULL pointer
dereference.

Switch to devm_rtc_allocate_device/rtc_register_device to allocate the rtc
struct before requesting the IRQ.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-zynqmp.c