Home
last modified time | relevance | path

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

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

Completed in 3 milliseconds