Patch from John Mills <jmills@tga.com> to correct some cut and paste

errors.
This commit is contained in:
Joel Sherrill
2000-01-03 16:44:04 +00:00
parent 6b7cf9fef8
commit 205d56453f

View File

@@ -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;