diff options
Diffstat (limited to 'sys/arch/i386/stand/libsa/bioscons.c')
-rw-r--r-- | sys/arch/i386/stand/libsa/bioscons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/bioscons.c b/sys/arch/i386/stand/libsa/bioscons.c index b785cf7d4e8..ff057733b6c 100644 --- a/sys/arch/i386/stand/libsa/bioscons.c +++ b/sys/arch/i386/stand/libsa/bioscons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioscons.c,v 1.33 2012/06/10 21:03:35 kettenis Exp $ */ +/* $OpenBSD: bioscons.c,v 1.34 2012/10/30 14:06:29 jsing Exp $ */ /* * Copyright (c) 1997-1999 Michael Shalayeff @@ -228,6 +228,6 @@ com_putc(dev_t dev, int c) while ((inb(port + com_lsr) & LSR_TXRDY) == 0) ; - + outb(port + com_data, c); } |