diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-11-03 23:23:37 -0800 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2015-11-05 08:22:21 +0100 |
commit | 1caf934a0504013874238445daaea7f32c36ab04 (patch) | |
tree | 4dc939261773f72f7802891dd7104cd44141b402 /common/cmd_console.c | |
parent | 8168ee38c26be586012743ded262145081d49d05 (diff) | |
download | u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.zip u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.tar.gz u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.tar.bz2 |
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 'common/cmd_console.c')
-rw-r--r-- | common/cmd_console.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/cmd_console.c b/common/cmd_console.c index 93dc505..9a356ec 100644 --- a/common/cmd_console.c +++ b/common/cmd_console.c @@ -27,10 +27,9 @@ static int do_coninfo(cmd_tbl_t *cmd, int flag, int argc, char * const argv[]) list_for_each(pos, list) { dev = list_entry(pos, struct stdio_dev, list); - printf ("%-8s %08x %c%c%c ", + printf ("%-8s %08x %c%c ", dev->name, dev->flags, - (dev->flags & DEV_FLAGS_SYSTEM) ? 'S' : '.', (dev->flags & DEV_FLAGS_INPUT) ? 'I' : '.', (dev->flags & DEV_FLAGS_OUTPUT) ? 'O' : '.'); |