浏览代码

ahci: Fix 'Invaild' typo

This fixes a spelling error in a message which can be output to the
console.

Signed-off-by: Taylor Hutt <thutt@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Taylor Hutt 12 年之前
父节点
当前提交
5a2b77f47d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/block/ahci.c

+ 1 - 1
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;
 	}