diff mbox

[U-Boot,v2] ftide020: fix incorrect information display format

Message ID 1321607922-7992-1-git-send-email-macpaul@andestech.com
State Accepted
Commit b9016034f52e68d149cc523c91aef5a0801f9bbe
Delegated to: Macpaul Lin
Headers show

Commit Message

Macpaul Lin Nov. 18, 2011, 9:18 a.m. UTC
Fix incorrect information display format when probing the device.

Signed-off-by: Macpaul Lin <macpaul@andestech.com>
---
Changes for v2:
  - Replace the display format of device name.

 drivers/block/ftide020.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

Comments

Macpaul Lin Nov. 18, 2011, 9:24 a.m. UTC | #1
Hi Macpaul,

2011/11/18 Macpaul Lin <macpaul@andestech.com>:
> Fix incorrect information display format when probing the device.
>
> Signed-off-by: Macpaul Lin <macpaul@andestech.com>
> ---
> Changes for v2:
>  - Replace the display format of device name.

Applied to u-boot-nds32/master.
Thanks.
diff mbox

Patch

diff --git a/drivers/block/ftide020.c b/drivers/block/ftide020.c
index 4a7a07f..ad8fdad 100644
--- 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("Faraday ATA controller not found.\n");
+		printf("FTIDE020_S ATA controller not found.\n");
 		return API_ENODEV;
 	}