Skip to content

Commit f756beb

Browse files
committed
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer fix from Thomas Gleixner. * 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: rtc: Fix possible null pointer dereference in rtc-mpc5121.c
2 parents c6de168 + e48b5e8 commit f756beb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/rtc/rtc-mpc5121.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,11 @@ static int __devinit mpc5121_rtc_probe(struct platform_device *op)
360360
&mpc5200_rtc_ops, THIS_MODULE);
361361
}
362362

363-
rtc->rtc->uie_unsupported = 1;
364-
365363
if (IS_ERR(rtc->rtc)) {
366364
err = PTR_ERR(rtc->rtc);
367365
goto out_free_irq;
368366
}
367+
rtc->rtc->uie_unsupported = 1;
369368

370369
return 0;
371370

0 commit comments

Comments
 (0)