Commit 6e8c818829587f001cacae5af4400e4e3aa90a37

Authored by Randy Dunlap
Committed by Linus Torvalds
1 parent 7be2c7c96a

[PATCH] docbook: add edd firmware interfaces

Cleanup kernel-doc notation in drivers/firmware/edd.c.

Add edd.c to DocBook/kernel-api.tmpl.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Matt Domsch <Matt_Domsch@dell.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 2 changed files with 8 additions and 3 deletions Side-by-side Diff

Documentation/DocBook/kernel-api.tmpl
... ... @@ -316,6 +316,9 @@
316 316 <sect1><title>DMI Interfaces</title>
317 317 !Edrivers/firmware/dmi_scan.c
318 318 </sect1>
  319 + <sect1><title>EDD Interfaces</title>
  320 +!Idrivers/firmware/edd.c
  321 + </sect1>
319 322 </chapter>
320 323  
321 324 <chapter id="security">
drivers/firmware/edd.c
... ... @@ -233,6 +233,8 @@
233 233  
234 234 /**
235 235 * edd_show_raw_data() - copies raw data to buffer for userspace to parse
  236 + * @edev: target edd_device
  237 + * @buf: output buffer
236 238 *
237 239 * Returns: number of bytes written, or -EINVAL on failure
238 240 */
... ... @@ -634,8 +636,8 @@
634 636  
635 637 /**
636 638 * edd_dev_is_type() - is this EDD device a 'type' device?
637   - * @edev
638   - * @type - a host bus or interface identifier string per the EDD spec
  639 + * @edev: target edd_device
  640 + * @type: a host bus or interface identifier string per the EDD spec
639 641 *
640 642 * Returns 1 (TRUE) if it is a 'type' device, 0 otherwise.
641 643 */
... ... @@ -657,7 +659,7 @@
657 659  
658 660 /**
659 661 * edd_get_pci_dev() - finds pci_dev that matches edev
660   - * @edev - edd_device
  662 + * @edev: edd_device
661 663 *
662 664 * Returns pci_dev if found, or NULL
663 665 */