summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/efi68k/console/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/efi68k/console/console.c')
-rw-r--r--c/src/lib/libbsp/m68k/efi68k/console/console.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/m68k/efi68k/console/console.c b/c/src/lib/libbsp/m68k/efi68k/console/console.c
index 76727cdeeb..2b4523ce3d 100644
--- a/c/src/lib/libbsp/m68k/efi68k/console/console.c
+++ b/c/src/lib/libbsp/m68k/efi68k/console/console.c
@@ -134,13 +134,14 @@ void xmit_interrupt(void) {
void modem_status(void) {
register char a;
- if ( ((a=*MDSR) & DCTS) != 0 )
+ if ( ((a=*MDSR) & DCTS) != 0 ) {
if ( (a & CTS) == 0)
_tx_stop = 1;
else {
_tx_stop = 0;
xmit_interrupt();
}
+ }
}
/* transfer character from the buffer */