Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -2
+1 -2
drivers/rtc/rtc-mpc5121.c
··· 360 360 &mpc5200_rtc_ops, THIS_MODULE); 361 361 } 362 362 363 - rtc->rtc->uie_unsupported = 1; 364 - 365 363 if (IS_ERR(rtc->rtc)) { 366 364 err = PTR_ERR(rtc->rtc); 367 365 goto out_free_irq; 368 366 } 367 + rtc->rtc->uie_unsupported = 1; 369 368 370 369 return 0; 371 370