The patch titled rtc: make example code jump to done instead of return when ioctl not supported has been removed from the -mm tree. Its filename was rtc-make-example-code-jump-to-done-instead-of-return-when-ioctl-not-supported.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: rtc: make example code jump to done instead of return when ioctl not supported From: Hans-Christian Egtvedt <hcegtvedt@xxxxxxxxx> Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@xxxxxxxxx> Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Documentation/rtc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN Documentation/rtc.txt~rtc-make-example-code-jump-to-done-instead-of-return-when-ioctl-not-supported Documentation/rtc.txt --- a/Documentation/rtc.txt~rtc-make-example-code-jump-to-done-instead-of-return-when-ioctl-not-supported +++ a/Documentation/rtc.txt @@ -385,7 +385,7 @@ test_PIE: /* not all RTCs support periodic IRQs */ if (errno == ENOTTY) { fprintf(stderr, "\nNo periodic IRQ support\n"); - return 0; + goto done; } perror("RTC_IRQP_READ ioctl"); exit(errno); _ Patches currently in -mm which might be from hcegtvedt@xxxxxxxxx are origin.patch git-watchdog.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html