]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/stdio.c
usb: kbd: On a "usb reset" call usb_kbd_deregister() before calling usb_stop()
[karo-tx-uboot.git] / common / stdio.c
index 692ca7f1cdf595ddb548673b4131983e41e2a6b1..c878103a4826b6d9f72b669125523a9b613d6bb3 100644 (file)
@@ -215,7 +215,7 @@ int stdio_deregister(const char *devname)
 }
 #endif /* CONFIG_SYS_STDIO_DEREGISTER */
 
-int stdio_init (void)
+int stdio_init_tables(void)
 {
 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
        /* already relocated for current ARM implementation */
@@ -232,6 +232,11 @@ int stdio_init (void)
        /* Initialize the list */
        INIT_LIST_HEAD(&(devs.list));
 
+       return 0;
+}
+
+int stdio_add_devices(void)
+{
 #ifdef CONFIG_SYS_I2C
        i2c_init_all();
 #else
@@ -265,5 +270,14 @@ int stdio_init (void)
 #ifdef CONFIG_CBMEM_CONSOLE
        cbmemc_init();
 #endif
-       return (0);
+
+       return 0;
+}
+
+int stdio_init(void)
+{
+       stdio_init_tables();
+       stdio_add_devices();
+
+       return 0;
 }