diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2018-09-02 19:32:50 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-09-17 16:35:14 -0500 |
commit | 7eb3702504c64425961ee9dd7080396a9477b7e1 (patch) | |
tree | b5fe4b33458e710aca8c70bd8047a02597238847 /drivers | |
parent | c6635792737b881021ead417b281067d56ed3380 (diff) | |
download | linux-7eb3702504c64425961ee9dd7080396a9477b7e1.tar.bz2 |
PCI: Fix pci.c kernel-doc parameter warning
Fix kernel-doc warning:
../drivers/pci/pci.c:218: warning: Excess function parameter 'p' description in 'pci_dev_str_match_path'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index dc3313d26c79..455783d3acdf 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -196,7 +196,7 @@ EXPORT_SYMBOL_GPL(pci_ioremap_wc_bar); /** * pci_dev_str_match_path - test if a path string matches a device * @dev: the PCI device to test - * @p: string to match the device against + * @path: string to match the device against * @endptr: pointer to the string after the match * * Test if a string (typically from a kernel parameter) formatted as a |