diff options
| author | 2002-03-15 01:20:03 +0000 | |
|---|---|---|
| committer | 2002-03-15 01:20:03 +0000 | |
| commit | 00caae4baf9e792d7b51ca1a041f452d045868fc (patch) | |
| tree | b2496c91d9c873ecb4b779c3dd430f13fe53beae /sys/dev/cons.h | |
| parent | The previous commit broke the bootblocks, since uvmexp is not available (diff) | |
| download | wireguard-openbsd-00caae4baf9e792d7b51ca1a041f452d045868fc.tar.xz wireguard-openbsd-00caae4baf9e792d7b51ca1a041f452d045868fc.zip | |
Cosmetic changes only, primarily making comments line up nicely after the
__P removal.
Diffstat (limited to 'sys/dev/cons.h')
| -rw-r--r-- | sys/dev/cons.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/cons.h b/sys/dev/cons.h index 6bf414da617..6d2bdd66786 100644 --- a/sys/dev/cons.h +++ b/sys/dev/cons.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cons.h,v 1.10 2002/03/14 04:01:23 millert Exp $ */ +/* $OpenBSD: cons.h,v 1.11 2002/03/15 01:20:04 millert Exp $ */ /* $NetBSD: cons.h,v 1.14 1996/03/14 19:08:35 christos Exp $ */ /* @@ -44,18 +44,18 @@ */ struct consdev { - void (*cn_probe)(struct consdev *); /* probe hardware and fill in consdev info */ - void (*cn_init)(struct consdev *); + void (*cn_probe)(struct consdev *); /* turn on as console */ - int (*cn_getc)(dev_t); + void (*cn_init)(struct consdev *); /* kernel getchar interface */ - void (*cn_putc)(dev_t, int); + int (*cn_getc)(dev_t); /* kernel putchar interface */ - void (*cn_pollc)(dev_t, int); + void (*cn_putc)(dev_t, int); /* turn on and off polling */ - void (*cn_bell)(dev_t, u_int, u_int, u_int); + void (*cn_pollc)(dev_t, int); /* ring bell */ + void (*cn_bell)(dev_t, u_int, u_int, u_int); dev_t cn_dev; /* major/minor of device */ int cn_pri; /* pecking order; the higher the better */ }; |
