rtc: pl030: fix possible race condition
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 9 Sep 2018 20:38:47 +0000 (22:38 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Tue, 11 Sep 2018 11:56:35 +0000 (13:56 +0200)
commitc778ec85825dc895936940072aea9fe9037db684
treed108049408d31e0038e0155a496320c325dcb7b2
parentbabab2f86440352d24e76118fdd7d40cab5fd7bf
rtc: pl030: 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
before requesting the IRQ.

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