summaryrefslogtreecommitdiff
path: root/doc/driver-model/UDM-stdio.txt
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-09-24 10:32:04 +0900
committerTom Rini <trini@ti.com>2013-11-08 15:25:12 -0500
commit566c6e43700c4f87408488aa7fef28fa37e8d455 (patch)
tree386a10c1c8f1fd5deb9298efb08fb5d1749f255e /doc/driver-model/UDM-stdio.txt
parent39d9abfa23c0d9fa7034c9fd01124be98eb92c4d (diff)
downloadu-boot-imx-566c6e43700c4f87408488aa7fef28fa37e8d455.zip
u-boot-imx-566c6e43700c4f87408488aa7fef28fa37e8d455.tar.gz
u-boot-imx-566c6e43700c4f87408488aa7fef28fa37e8d455.tar.bz2
cosmetic: doc: driver-model: Do not number driver lists
Everytime a dead driver is removed from the list, we must re-number. This is a painful task. Try git show e53232250 -- doc/driver-model/UDM-serial.txt git show 6f62f4207 -- doc/driver-model/UDM-serial.txt git show b9f4bc34a -- doc/driver-model/UDM-serial.txt to see what I mean. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'doc/driver-model/UDM-stdio.txt')
-rw-r--r--doc/driver-model/UDM-stdio.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/driver-model/UDM-stdio.txt b/doc/driver-model/UDM-stdio.txt
index c0b1c90..156627b 100644
--- a/doc/driver-model/UDM-stdio.txt
+++ b/doc/driver-model/UDM-stdio.txt
@@ -158,21 +158,21 @@ For in-depth analysis of serial port drivers, refer to [ UDM-serial.txt ].
For in-depth analysis of keyboard drivers, refer to [ UDM-keyboard.txt ].
For in-depth analysis of video drivers, refer to [ UDM-video.txt ].
- 1) arch/blackfin/cpu/jtag-console.c
- -----------------------------------
+ arch/blackfin/cpu/jtag-console.c
+ --------------------------------
This driver is a classic STDIO driver, no problem with conversion is expected.
- 2) board/mpl/pati/pati.c
- ------------------------
+ board/mpl/pati/pati.c
+ ---------------------
This driver registers with the STDIO framework, though it uses a lot of ad-hoc
stuff which will need to be sorted out.
- 3) board/netphone/phone_console.c
- ---------------------------------
+ board/netphone/phone_console.c
+ ------------------------------
This driver is a classic STDIO driver, no problem with conversion is expected.
- 4) drivers/net/netconsole.c
- ---------------------------
+ drivers/net/netconsole.c
+ ------------------------
This driver is a classic STDIO driver, no problem with conversion is expected.
IV) Other involved files (To be removed)