Home
last modified time | relevance | path

Searched refs:usbttydev (Results 1 – 1 of 1) sorted by relevance

/openbmc/u-boot/drivers/serial/
H A Dusbtty.c60 static struct stdio_dev usbttydev; variable
563 memset (&usbttydev, 0, sizeof (usbttydev)); in drv_usbtty_init()
565 strcpy (usbttydev.name, "usbtty"); in drv_usbtty_init()
566 usbttydev.ext = 0; /* No extensions */ in drv_usbtty_init()
567 usbttydev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_OUTPUT; in drv_usbtty_init()
568 usbttydev.tstc = usbtty_tstc; /* 'tstc' function */ in drv_usbtty_init()
569 usbttydev.getc = usbtty_getc; /* 'getc' function */ in drv_usbtty_init()
570 usbttydev.putc = usbtty_putc; /* 'putc' function */ in drv_usbtty_init()
571 usbttydev.puts = usbtty_puts; /* 'puts' function */ in drv_usbtty_init()
573 rc = stdio_register (&usbttydev); in drv_usbtty_init()