X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/593a1d5fd87cdf5b46dd5fcb84467b432cea0f91..c18c124eaa464aaaa5549e99e5a70fc9cbb50944:/pexpert/i386/pe_serial.c?ds=sidebyside diff --git a/pexpert/i386/pe_serial.c b/pexpert/i386/pe_serial.c index ddb48b162..f056487a0 100644 --- a/pexpert/i386/pe_serial.c +++ b/pexpert/i386/pe_serial.c @@ -159,7 +159,7 @@ int serial_init( void ) { unsigned serial_baud_rate = 0; - if ( /*uart_initted ||*/ uart_probe() == 0 ) return 0; + if ( uart_probe() == 0 ) return 0; /* Disable hardware interrupts */ @@ -201,7 +201,6 @@ int serial_init( void ) void serial_putc( char c ) { uart_putc(c); - if (c == '\n') uart_putc('\r'); } int serial_getc( void )