misc: alcor_pci: fix spelling mistake "invailid" -> "invalid"

There are spelling mistakes in a couple of dev_dbg messages, fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
Colin Ian King 2018-12-06 09:19:36 +00:00 committed by Ulf Hansson
parent 71645e6572
commit 9e89a1526a
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
while (1) {
pci_read_config_dword(pci, where, &val32);
if (val32 == 0xffffffff) {
dev_dbg(priv->dev, "find_cap_offset invailid value %x.\n",
dev_dbg(priv->dev, "find_cap_offset invalid value %x.\n",
val32);
return 0;
}
@ -116,7 +116,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
}
if ((val32 & 0xff00) == 0x00) {
dev_dbg(priv->dev, "pci_find_cap_offset invailid value %x.\n",
dev_dbg(priv->dev, "pci_find_cap_offset invalid value %x.\n",
val32);
break;
}