Commit 505fb746 authored by Randy Dunlap's avatar Randy Dunlap Committed by Bjorn Helgaas

PCI: Fix kernel-doc build warning

Fix build error in kernel-doc notation:

  ../drivers/pci/pci.c:3479: ERROR: Unexpected indentation.

"::" tells the kernel-doc "reStructuredText" processor that the following
block is a literal block of some blob that should be kept as is.
Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
[bhelgaas: add hint about "::" meaning]
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 03ea2263
...@@ -3471,7 +3471,7 @@ EXPORT_SYMBOL(devm_pci_remap_cfgspace); ...@@ -3471,7 +3471,7 @@ EXPORT_SYMBOL(devm_pci_remap_cfgspace);
* All operations are managed and will be undone on driver detach. * All operations are managed and will be undone on driver detach.
* *
* Returns a pointer to the remapped memory or an ERR_PTR() encoded error code * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
* on failure. Usage example: * on failure. Usage example::
* *
* res = platform_get_resource(pdev, IORESOURCE_MEM, 0); * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
* base = devm_pci_remap_cfg_resource(&pdev->dev, res); * base = devm_pci_remap_cfg_resource(&pdev->dev, res);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment