From: Taylor Hutt Date: Mon, 29 Oct 2012 05:23:56 +0000 (+0000) Subject: ahci: Fix 'Invaild' typo X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5a2b77f47daa5c87ef45a1c71c72cbc16ede77f8;p=project%2Fbcm63xx%2Fu-boot.git ahci: Fix 'Invaild' typo This fixes a spelling error in a message which can be output to the console. Signed-off-by: Taylor Hutt Signed-off-by: Simon Glass --- diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index 10fae88ecb..20c5336263 100644 --- a/drivers/block/ahci.c +++ b/drivers/block/ahci.c @@ -478,7 +478,7 @@ static int ahci_device_data_io(u8 port, u8 *fis, int fis_len, u8 *buf, debug("Enter %s: for port %d\n", __func__, port); if (port > probe_ent->n_ports) { - printf("Invaild port number %d\n", port); + printf("Invalid port number %d\n", port); return -1; }