ftide020: fix incorrect information display format

Fix incorrect information display format when probing the device.

Signed-off-by: Macpaul Lin <macpaul@andestech.com>
This commit is contained in:
Macpaul Lin 2011-09-23 17:54:34 +08:00
parent 05622191e5
commit b9016034f5
1 changed files with 2 additions and 3 deletions

View 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;
}