diff options
Diffstat (limited to 'drivers/video/cfb_console.c')
-rw-r--r-- | drivers/video/cfb_console.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 7f2ddc10c62..53baa2f64d5 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -2222,7 +2222,7 @@ static int video_init(void) #ifdef CONFIG_VIDEO_LOGO /* Plot the logo and get start point of console */ - debug("Video: Drawing the logo ...\n"); + printf("Video: Drawing the logo ...\n"); video_console_address = video_logo(); #else video_console_address = video_fb_address; @@ -2260,7 +2260,7 @@ int drv_video_init(void) /* Init video chip - returns with framebuffer cleared */ skip_dev_init = (video_init() == -1); - +printf("skip_dev_init=%d\n", skip_dev_init); if (board_cfb_skip()) return 0; @@ -2298,9 +2298,10 @@ int drv_video_init(void) } #endif + printf("Registering console stdio device\n"); if (stdio_register(&console_dev) != 0) return 0; - + printf("Registered console stdio device\n"); /* Return success */ return 1; } |