projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0562219
)
ftide020: fix incorrect information display format
author
Macpaul Lin
<macpaul@andestech.com>
Fri, 23 Sep 2011 09:54:34 +0000
(17:54 +0800)
committer
Macpaul Lin
<macpaul@andestech.com>
Fri, 18 Nov 2011 09:26:14 +0000
(17:26 +0800)
Fix incorrect information display format when probing the device.
Signed-off-by: Macpaul Lin <macpaul@andestech.com>
drivers/block/ftide020.c
patch
|
blob
|
history
diff --git
a/drivers/block/ftide020.c
b/drivers/block/ftide020.c
index 4a7a07f60b21514330eacf9ffb46c4501cca19e5..ad8fdad7c228756f56a73cf585284769c4618e0f 100644
(file)
--- a/
drivers/block/ftide020.c
+++ b/
drivers/block/ftide020.c
@@
-316,10
+316,9
@@
int ide_preinit(void)
/* auto-detect IDE controller */
if (ftide_controller_probe()) {
- printf("Faraday %s driver version %s\n", FTIDE_IP_NAME,
- FTIDE_DRIVER_VERSION);
+ printf("FTIDE020_S\n");
} else {
- printf("F
araday
ATA controller not found.\n");
+ printf("F
TIDE020_S
ATA controller not found.\n");
return API_ENODEV;
}