diff options
author | Tom Rini <trini@konsulko.com> | 2015-11-05 07:47:21 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 07:47:21 -0500 |
commit | ed02c532be690b3d0c3e15c81531785a788fd949 (patch) | |
tree | fe6790c023fe118cb24d07106cddfc592a39d1e3 /drivers/video/cfb_console.c | |
parent | 60b25259a5540686add02cf6c94cd7494a3e2d23 (diff) | |
parent | 4b6d09449fdeaa5659c5d277bdf133457521e70b (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-video
Diffstat (limited to 'drivers/video/cfb_console.c')
-rw-r--r-- | drivers/video/cfb_console.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index aa7ca8646d..556a55f65c 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -2280,8 +2280,7 @@ int drv_video_init(void) /* Init vga device */ memset(&console_dev, 0, sizeof(console_dev)); strcpy(console_dev.name, "vga"); - console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */ - console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM; + console_dev.flags = DEV_FLAGS_OUTPUT; console_dev.putc = video_putc; /* 'putc' function */ console_dev.puts = video_puts; /* 'puts' function */ |