]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/stdio.c
Remove unused CONFIG_SERIAL_SOFTWARE_FIFO feature
[karo-tx-uboot.git] / common / stdio.c
index 870ddfd5ef9ac770d2d29a800d8a399dcb94b9ec..25013693f7db72e2f88e70dc20a732faf7a0c182 100644 (file)
@@ -76,18 +76,10 @@ static void drv_system_init (void)
 
        strcpy (dev.name, "serial");
        dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
-#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
-       dev.putc = serial_buffered_putc;
-       dev.puts = serial_buffered_puts;
-       dev.getc = serial_buffered_getc;
-       dev.tstc = serial_buffered_tstc;
-#else
        dev.putc = serial_putc;
        dev.puts = serial_puts;
        dev.getc = serial_getc;
        dev.tstc = serial_tstc;
-#endif
-
        stdio_register (&dev);
 
 #ifdef CONFIG_SYS_DEVICE_NULLDEV