mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
So far the console API uses the following naming convention: ======Extract====== typedef struct device_t; int device_register (device_t * dev); int devices_init (void); int device_deregister(char *devname); struct list_head* device_get_list(void); device_t* device_get_by_name(char* name); device_t* device_clone(device_t *dev); ======= which is too generic and confusing. Instead of using device_XX and device_t we change this into stdio_XX and stdio_dev This will also allow to add later a generic device mechanism in order to have support for multiple devices and driver instances. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Edited commit message. Signed-off-by: Wolfgang Denk <wd@denx.de> |
||
|---|---|---|
| .. | ||
| arm_dcc.c | ||
| at91rm9200_usart.c | ||
| atmel_usart.c | ||
| atmel_usart.h | ||
| Makefile | ||
| mcfuart.c | ||
| ns9750_serial.c | ||
| ns16550.c | ||
| s3c64xx.c | ||
| s3c4510b_uart.c | ||
| s3c4510b_uart.h | ||
| serial.c | ||
| serial_clps7111.c | ||
| serial_imx.c | ||
| serial_ixp.c | ||
| serial_ks8695.c | ||
| serial_lh7a40x.c | ||
| serial_lpc2292.c | ||
| serial_max3100.c | ||
| serial_mxc.c | ||
| serial_netarm.c | ||
| serial_pl01x.c | ||
| serial_pl01x.h | ||
| serial_pxa.c | ||
| serial_s3c24x0.c | ||
| serial_s3c44b0.c | ||
| serial_sa1100.c | ||
| serial_sh.c | ||
| serial_xuartlite.c | ||
| usbtty.c | ||
| usbtty.h | ||