]> git.baikalelectronics.ru Git - kernel.git/commit
rtc: mt6397: fix possible race condition
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 9 Sep 2018 20:38:46 +0000 (22:38 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Tue, 11 Sep 2018 11:56:20 +0000 (13:56 +0200)
commitedf2902d11ae498dd943ffbe089f30f9e85966f1
treea08bf7057872c07cc213591c3ec440cb364c172c
parentff964f84b043cbb78bcd2c1b356daeaa0f012d36
rtc: mt6397: 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.

Acked-by: Eddie Huang <eddie.huang@mediatek.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-mt6397.c