From: Macpaul Lin Date: Fri, 23 Sep 2011 09:54:34 +0000 (+0800) Subject: ftide020: fix incorrect information display format X-Git-Tag: v2011.12-rc1~158^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b9016034f52e68d149cc523c91aef5a0801f9bbe;p=u-boot ftide020: fix incorrect information display format Fix incorrect information display format when probing the device. Signed-off-by: Macpaul Lin --- diff --git a/drivers/block/ftide020.c b/drivers/block/ftide020.c index 4a7a07f60b..ad8fdad7c2 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; }