From patchwork Mon Oct 29 15:23:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,v3,13/22] ahci: Fix 'Invaild' typo Date: Mon, 29 Oct 2012 05:23:56 -0000 From: Simon Glass X-Patchwork-Id: 195039 Message-Id: <1351524245-19584-14-git-send-email-sjg@chromium.org> To: U-Boot Mailing List Cc: Tom Rini , Taylor Hutt , Rob Herring From: Taylor Hutt 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 --- Changes in v3: - Move #ifdef change into earlier commit drivers/block/ahci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index 10fae88..20c5336 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; }