X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fstdio_dev.h;h=9451740e8be4a51071a8e6aa4c94f45d1815ded9;hb=d0b6f247a1e7ffd06d931ca4088426134dc4e546;hp=83da4cdff15e8fb8824a93d25cbdc37d9732b342;hpb=84efbf4d144ff8aaed3cca036aebb1fe69eff3f4;p=u-boot diff --git a/include/stdio_dev.h b/include/stdio_dev.h index 83da4cdff1..9451740e8b 100644 --- a/include/stdio_dev.h +++ b/include/stdio_dev.h @@ -93,21 +93,18 @@ int stdio_register (struct stdio_dev * dev); int stdio_init (void); void stdio_print_current_devices(void); #ifdef CONFIG_SYS_STDIO_DEREGISTER -int stdio_deregister(char *devname); +int stdio_deregister(const char *devname); #endif struct list_head* stdio_get_list(void); -struct stdio_dev* stdio_get_by_name(char* name); +struct stdio_dev* stdio_get_by_name(const char* name); struct stdio_dev* stdio_clone(struct stdio_dev *dev); -#ifdef CONFIG_ARM_DCC_MULTI +#ifdef CONFIG_ARM_DCC int drv_arm_dcc_init(void); #endif #ifdef CONFIG_LCD int drv_lcd_init (void); #endif -#ifdef CONFIG_VFD -int drv_vfd_init (void); -#endif #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) int drv_video_init (void); #endif @@ -123,5 +120,8 @@ int drv_nc_init (void); #ifdef CONFIG_JTAG_CONSOLE int drv_jtag_console_init (void); #endif +#ifdef CONFIG_CBMEM_CONSOLE +int cbmemc_init(void); +#endif #endif