diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-09-24 10:32:04 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-08 15:25:12 -0500 |
commit | 566c6e43700c4f87408488aa7fef28fa37e8d455 (patch) | |
tree | 386a10c1c8f1fd5deb9298efb08fb5d1749f255e /doc/driver-model/UDM-hwmon.txt | |
parent | 39d9abfa23c0d9fa7034c9fd01124be98eb92c4d (diff) | |
download | u-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-hwmon.txt')
-rw-r--r-- | doc/driver-model/UDM-hwmon.txt | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/driver-model/UDM-hwmon.txt b/doc/driver-model/UDM-hwmon.txt index 9048cc0..03a96a0 100644 --- a/doc/driver-model/UDM-hwmon.txt +++ b/doc/driver-model/UDM-hwmon.txt @@ -71,48 +71,48 @@ II) Approach III) Analysis of in-tree drivers -------------------------------- - 1) drivers/hwmon/lm81.c - ----------------------- + drivers/hwmon/lm81.c + -------------------- The driver is standard dtt. Simple conversion is possible. - 2) drivers/hwmon/ds1722.c - ------------------------- + drivers/hwmon/ds1722.c + ---------------------- The driver is not standard dtt, but interface is similar to dtt. The interface has to be changed in order to comply to above mentioned specification. - 3) drivers/hwmon/ds1775.c - ------------------------- + drivers/hwmon/ds1775.c + ---------------------- The driver is standard dtt. Simple conversion is possible. - 4) drivers/hwmon/lm73.c - ----------------------- + drivers/hwmon/lm73.c + -------------------- The driver is standard dtt. Simple conversion is possible. - 5) drivers/hwmon/lm63.c - ----------------------- + drivers/hwmon/lm63.c + -------------------- The driver is standard dtt. Simple conversion is possible. - 6) drivers/hwmon/adt7460.c - -------------------------- + drivers/hwmon/adt7460.c + ----------------------- The driver is standard dtt. Simple conversion is possible. - 7) drivers/hwmon/lm75.c - ----------------------- + drivers/hwmon/lm75.c + -------------------- The driver is standard dtt. Simple conversion is possible. - 8) drivers/hwmon/ds1621.c - ------------------------- + drivers/hwmon/ds1621.c + ---------------------- The driver is standard dtt. Simple conversion is possible. - 9) drivers/hwmon/adm1021.c - -------------------------- + drivers/hwmon/adm1021.c + ----------------------- The driver is standard dtt. Simple conversion is possible. |