mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
stdio: Introduce a new helper stdio_file_to_flags()
Let's deduplicate existing copies by splitting off to a new helper. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
99cb2b996b
commit
d9b0ac90ba
2 changed files with 15 additions and 0 deletions
|
@ -28,6 +28,19 @@ static struct stdio_dev devs;
|
||||||
struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL };
|
struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL };
|
||||||
char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" };
|
char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" };
|
||||||
|
|
||||||
|
int stdio_file_to_flags(const int file)
|
||||||
|
{
|
||||||
|
switch (file) {
|
||||||
|
case stdin:
|
||||||
|
return DEV_FLAGS_INPUT;
|
||||||
|
case stdout:
|
||||||
|
case stderr:
|
||||||
|
return DEV_FLAGS_OUTPUT;
|
||||||
|
default:
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(SYS_DEVICE_NULLDEV)
|
#if CONFIG_IS_ENABLED(SYS_DEVICE_NULLDEV)
|
||||||
static void nulldev_putc(struct stdio_dev *dev, const char c)
|
static void nulldev_putc(struct stdio_dev *dev, const char c)
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
#define DEV_FLAGS_OUTPUT 0x00000002 /* Device can be used as output console */
|
#define DEV_FLAGS_OUTPUT 0x00000002 /* Device can be used as output console */
|
||||||
#define DEV_FLAGS_DM 0x00000004 /* Device priv is a struct udevice * */
|
#define DEV_FLAGS_DM 0x00000004 /* Device priv is a struct udevice * */
|
||||||
|
|
||||||
|
int stdio_file_to_flags(const int file);
|
||||||
|
|
||||||
/* Device information */
|
/* Device information */
|
||||||
struct stdio_dev {
|
struct stdio_dev {
|
||||||
int flags; /* Device flags: input/output/system */
|
int flags; /* Device flags: input/output/system */
|
||||||
|
|
Loading…
Reference in a new issue