Commit f5dafca52d366ef8c6c86cbdfecc71a9a78b63a6

Authored by Randy Dunlap
Committed by Jesse Barnes
1 parent a7b930cdf8

PCI: remove excess kernel-doc notation

Fix pci/rom.c kernel-doc function notation:

Warning(drivers/pci/rom.c:110): Excess function parameter or struct member 'return' description in 'pci_map_rom'
Warning(drivers/pci/rom.c:177): Excess function parameter or struct member 'return' description in 'pci_map_rom_copy'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

Showing 1 changed file with 4 additions and 2 deletions Side-by-side Diff

... ... @@ -100,8 +100,9 @@
100 100 * pci_map_rom - map a PCI ROM to kernel space
101 101 * @pdev: pointer to pci device struct
102 102 * @size: pointer to receive size of pci window over ROM
103   - * @return: kernel virtual pointer to image of ROM
104 103 *
  104 + * Return: kernel virtual pointer to image of ROM
  105 + *
105 106 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
106 107 * the shadow BIOS copy will be returned instead of the
107 108 * actual ROM.
... ... @@ -167,7 +168,8 @@
167 168 * pci_map_rom_copy - map a PCI ROM to kernel space, create a copy
168 169 * @pdev: pointer to pci device struct
169 170 * @size: pointer to receive size of pci window over ROM
170   - * @return: kernel virtual pointer to image of ROM
  171 + *
  172 + * Return: kernel virtual pointer to image of ROM
171 173 *
172 174 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
173 175 * the shadow BIOS copy will be returned instead of the