]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ftide020: fix incorrect information display format
authorMacpaul Lin <macpaul@andestech.com>
Fri, 23 Sep 2011 09:54:34 +0000 (17:54 +0800)
committerMacpaul 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

index 4a7a07f60b21514330eacf9ffb46c4501cca19e5..ad8fdad7c228756f56a73cf585284769c4618e0f 100644 (file)
@@ -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;
        }