diff options
author | Bin Meng | 2015-11-03 23:23:37 -0800 |
---|---|---|
committer | Anatolij Gustschin | 2015-11-05 08:22:21 +0100 |
commit | 1caf934a0504013874238445daaea7f32c36ab04 (patch) | |
tree | 4dc939261773f72f7802891dd7104cd44141b402 /drivers/video | |
parent | 8168ee38c26be586012743ded262145081d49d05 (diff) |
video: Drop DEV_FLAGS_SYSTEM flag
DEV_FLAGS_SYSTEM does not have any actual meaning, hence drop it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/cfb_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index aa7ca8646db..51cdd4dbce5 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -2281,7 +2281,7 @@ int drv_video_init(void) 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 */ |