aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorHans-Christian Egtvedt <hcegtvedt@atmel.com>2007-07-17 07:04:59 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 13:23:08 -0400
commit7a39a49c746adc08488b1403b5aeca1dbd4ce0e2 (patch)
tree2b313c27077df82e2a6fe8593ef13ebff0781dbd /Documentation
parentc00593f6f816e5cfa6d193a2561ca77541f71424 (diff)
rtc: make example code jump to done instead of return when ioctl not supported
Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: David Brownell <david-b@pacbell.net> Cc: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/rtc.txt2
1 files changed, 1 insertions, 1 deletions
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:
385 /* not all RTCs support periodic IRQs */ 385 /* not all RTCs support periodic IRQs */
386 if (errno == ENOTTY) { 386 if (errno == ENOTTY) {
387 fprintf(stderr, "\nNo periodic IRQ support\n"); 387 fprintf(stderr, "\nNo periodic IRQ support\n");
388 return 0; 388 goto done;
389 } 389 }
390 perror("RTC_IRQP_READ ioctl"); 390 perror("RTC_IRQP_READ ioctl");
391 exit(errno); 391 exit(errno);