diff options
| author | Andy Shevchenko <[email protected]> | 2021-02-11 17:09:37 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-02-16 11:16:07 -0500 |
| commit | 7b9ca3f89c340f3a195e17ccdd7d512e0884e555 (patch) | |
| tree | 4829667af35dff505a36ff3bbdcc462a42c4c1cf /common/console.c | |
| parent | d9b0ac90baf499d215462ed7afffbfd22a58340b (diff) | |
console: Switch to use stdio_file_to_flags()
Deduplicate code by replacing with stdio_file_to_flags() helper.
Signed-off-by: Andy Shevchenko <[email protected]>
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/common/console.c b/common/console.c index 567273a0ce8..b1afb650ed3 100644 --- a/common/console.c +++ b/common/console.c @@ -855,17 +855,9 @@ int console_assign(int file, const char *devname) struct stdio_dev *dev; /* Check for valid file */ - switch (file) { - case stdin: - flag = DEV_FLAGS_INPUT; - break; - case stdout: - case stderr: - flag = DEV_FLAGS_OUTPUT; - break; - default: - return -1; - } + flag = stdio_file_to_flags(file); + if (flag < 0) + return flag; /* Check for valid device name */ |
