Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x68k/stand/libsa Add missing breaks. No need to ou...
details: https://anonhg.NetBSD.org/src/rev/c32c88c0d003
branches: trunk
changeset: 764101:c32c88c0d003
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Mon Apr 11 13:48:32 2011 +0000
description:
Add missing breaks. No need to output to SERIAL on ITE console.
diffstat:
sys/arch/x68k/stand/libsa/consio.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (20 lines):
diff -r 0cb30d2dca54 -r c32c88c0d003 sys/arch/x68k/stand/libsa/consio.c
--- a/sys/arch/x68k/stand/libsa/consio.c Mon Apr 11 13:47:16 2011 +0000
+++ b/sys/arch/x68k/stand/libsa/consio.c Mon Apr 11 13:48:32 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: consio.c,v 1.5 2007/11/11 05:20:26 isaki Exp $ */
+/* $NetBSD: consio.c,v 1.6 2011/04/11 13:48:32 tsutsui Exp $ */
/*
* Copyright (c) 2001 MINOURA Makoto.
@@ -92,8 +92,10 @@
switch (x68k_console_device) {
case ITE:
IOCS_B_PUTC (c);
+ break;
case SERIAL:
IOCS_OUT232C (c);
+ break;
}
}
Home |
Main Index |
Thread Index |
Old Index