diff options
author | Krzysztof Wilczyński <kw@linux.com> | 2022-01-07 22:59:42 +0000 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2022-01-07 20:43:23 -0600 |
commit | ccd36795be48956248dc308f4525c06c7f419d76 (patch) | |
tree | b4f29a92640f0de482f84e9b65f3db76e4633d9e /drivers/pci/of.c | |
parent | fb82437fdd8cd8ac41b1265e40a96668e33c3a8d (diff) | |
download | linux-rpi-ccd36795be48956248dc308f4525c06c7f419d76.tar.gz linux-rpi-ccd36795be48956248dc308f4525c06c7f419d76.tar.bz2 linux-rpi-ccd36795be48956248dc308f4525c06c7f419d76.zip |
PCI: Correct misspelled words
Fix a number of misspelled words, and while at it, correct two phrases used
to indicate a status of an operation where words used have been cleverly
truncated and thus always trigger a spellchecking error while performing a
static code analysis over the PCI tree.
[bhelgaas: reverse sense of quirk ternary]
Link: https://lore.kernel.org/r/20220107225942.121484-1-kw@linux.com
Signed-off-by: Krzysztof Wilczyński <kw@linux.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/of.c')
-rw-r--r-- | drivers/pci/of.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/of.c b/drivers/pci/of.c index 0b1237cff239..cb2e8351c2cc 100644 --- a/drivers/pci/of.c +++ b/drivers/pci/of.c @@ -247,7 +247,7 @@ void of_pci_check_probe_only(void) else pci_clear_flags(PCI_PROBE_ONLY); - pr_info("PROBE_ONLY %sabled\n", val ? "en" : "dis"); + pr_info("PROBE_ONLY %s\n", val ? "enabled" : "disabled"); } EXPORT_SYMBOL_GPL(of_pci_check_probe_only); |