summaryrefslogtreecommitdiffstats
path: root/sys/dev/sio/sio.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2006-05-26 11:21:52 +0000
committerphk <phk@FreeBSD.org>2006-05-26 11:21:52 +0000
commit9d2a9f23a5649170b5d45c9f8a5ccc7997234ff9 (patch)
treeb13b29bb7f0f46e1da0802fbbe238192650a713b /sys/dev/sio/sio.c
parent014f0df978617e44e8f78fafac3ec11e9b9cbb67 (diff)
downloadFreeBSD-src-9d2a9f23a5649170b5d45c9f8a5ccc7997234ff9.zip
FreeBSD-src-9d2a9f23a5649170b5d45c9f8a5ccc7997234ff9.tar.gz
Convert to use CONSOLE_DRIVER() macro:
Remove cngetc, rename cncheckc to cngetc (fix GDB console accordingly)
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r--sys/dev/sio/sio.c52
1 files changed, 9 insertions, 43 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index daeeebd..65e3685 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -2276,12 +2276,10 @@ static void siocntxwait(Port_t iobase);
static cn_probe_t sio_cnprobe;
static cn_init_t sio_cninit;
static cn_term_t sio_cnterm;
-static cn_checkc_t sio_cncheckc;
static cn_getc_t sio_cngetc;
static cn_putc_t sio_cnputc;
-CONS_DRIVER(sio, sio_cnprobe, sio_cninit, sio_cnterm, sio_cngetc, sio_cncheckc,
- sio_cnputc, NULL);
+CONSOLE_DRIVER(sio);
static void
siocntxwait(iobase)
@@ -2500,7 +2498,7 @@ sio_cnterm(cp)
}
static int
-sio_cncheckc(struct consdev *cd)
+sio_cngetc(struct consdev *cd)
{
int c;
Port_t iobase;
@@ -2530,36 +2528,6 @@ sio_cncheckc(struct consdev *cd)
return (c);
}
-static int
-sio_cngetc(struct consdev *cd)
-{
- int c;
- Port_t iobase;
- int s;
- struct siocnstate sp;
- speed_t speed;
-
- if (cd != NULL && cd->cn_unit == siocnunit) {
- iobase = siocniobase;
- speed = comdefaultrate;
- } else {
-#ifdef GDB
- iobase = siogdbiobase;
- speed = gdbdefaultrate;
-#else
- return (-1);
-#endif
- }
- s = spltty();
- siocnopen(&sp, iobase, speed);
- while (!(inb(iobase + com_lsr) & LSR_RXRDY))
- ;
- c = inb(iobase + com_data);
- siocnclose(&sp, iobase);
- splx(s);
- return (c);
-}
-
static void
sio_cnputc(struct consdev *cd, int c)
{
@@ -2607,10 +2575,9 @@ static gdb_probe_f siogdbprobe;
static gdb_init_f siogdbinit;
static gdb_term_f siogdbterm;
static gdb_getc_f siogdbgetc;
-static gdb_checkc_f siogdbcheckc;
static gdb_putc_f siogdbputc;
-GDB_DBGPORT(sio, siogdbprobe, siogdbinit, siogdbterm, siogdbcheckc,
+GDB_DBGPORT(sio, siogdbprobe, siogdbinit, siogdbterm, NULL,
siogdbgetc, siogdbputc);
static int
@@ -2636,15 +2603,14 @@ siogdbputc(int c)
}
static int
-siogdbcheckc(void)
-{
- return (sio_cncheckc(NULL));
-}
-
-static int
siogdbgetc(void)
{
- return (sio_cngetc(NULL));
+ int c;
+
+ do
+ c = sio_cngetc(NULL);
+ while (c == -1);
+ return (c);
}
#endif
OpenPOWER on IntegriCloud