From: Hans-Christian Egtvedt Date: Tue, 17 Jul 2007 11:04:59 +0000 (-0700) Subject: rtc: make example code jump to done instead of return when ioctl not supported X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7a39a49c746adc08488b1403b5aeca1dbd4ce0e2;p=linux-beck.git rtc: make example code jump to done instead of return when ioctl not supported Signed-off-by: Hans-Christian Egtvedt Cc: Haavard Skinnemoen Cc: David Brownell Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/Documentation/rtc.txt b/Documentation/rtc.txt index 7c701b88d6d5..c931d613f641 100644 --- a/Documentation/rtc.txt +++ b/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);