From 205d56453f8ba7bfd3baa8c7c12d744698818492 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 3 Jan 2000 16:44:04 +0000 Subject: Patch from John Mills to correct some cut and paste errors. --- c/src/lib/libcpu/sh/sh7045/sci/sci.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'c/src/lib/libcpu/sh') diff --git a/c/src/lib/libcpu/sh/sh7045/sci/sci.c b/c/src/lib/libcpu/sh/sh7045/sci/sci.c index 3a443e64ee..2f0927b15a 100644 --- a/c/src/lib/libcpu/sh/sh7045/sci/sci.c +++ b/c/src/lib/libcpu/sh/sh7045/sci/sci.c @@ -135,9 +135,9 @@ rtems_boolean rdSCI0(unsigned char *ch) rtems_boolean result=FALSE; if ((read8(SCI_SSR0) & SCI_RDRF) != 0x00) { - /* Write the character to the TDR */ - write8(*ch, SCI_RDR0); - /* Clear the TDRE bit */ + /* read input */ + *ch = read8(SCI_RDR0); + /* Clear RDRF flag */ temp = read8(SCI_SSR0) & ~SCI_RDRF; write8(temp, SCI_SSR0); result = TRUE; @@ -151,9 +151,9 @@ rtems_boolean rdSCI1(unsigned char *ch) rtems_boolean result=FALSE; if ((read8(SCI_SSR1) & SCI_RDRF) != 0x00) { - /* Write the character to the TDR */ - write8(*ch, SCI_RDR1); - /* Clear the TDRE bit */ + /* read input */ + *ch = read8(SCI_RDR1); + /* Clear RDRF flag */ temp= read8(SCI_SSR1) & ~SCI_RDRF; write8(temp, SCI_SSR1); result = TRUE; -- cgit v1.2.3