Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[ACPI] fix kernel-doc warnings in acpi/scan.c

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by

Randy Dunlap and committed by
Len Brown
d758a8fa add5b5ee

+18 -10
+1
Documentation/DocBook/kernel-api.tmpl
··· 369 369 X!Edrivers/acpi/bus.c 370 370 --> 371 371 !Edrivers/acpi/scan.c 372 + !Idrivers/acpi/scan.c 372 373 <!-- No correct structured comments 373 374 X!Edrivers/acpi/pci_bind.c 374 375 -->
+17 -10
drivers/acpi/scan.c
··· 475 475 static DECLARE_MUTEX(acpi_bus_drivers_lock); 476 476 477 477 /** 478 - * acpi_bus_match 479 - * -------------- 478 + * acpi_bus_match - match device IDs to driver's supported IDs 479 + * @device: the device that we are trying to match to a driver 480 + * @driver: driver whose device id table is being checked 481 + * 480 482 * Checks the device's hardware (_HID) or compatible (_CID) ids to see if it 481 483 * matches the specified driver's criteria. 482 484 */ ··· 491 489 } 492 490 493 491 /** 494 - * acpi_bus_driver_init 495 - * -------------------- 492 + * acpi_bus_driver_init - add a device to a driver 493 + * @device: the device to add and initialize 494 + * @driver: driver for the device 495 + * 496 496 * Used to initialize a device via its device driver. Called whenever a 497 497 * driver is bound to a device. Invokes the driver's add() and start() ops. 498 498 */ ··· 607 603 } 608 604 609 605 /** 610 - * acpi_bus_register_driver 611 - * ------------------------ 606 + * acpi_bus_register_driver - register a driver with the ACPI bus 607 + * @driver: driver being registered 608 + * 612 609 * Registers a driver with the ACPI bus. Searches the namespace for all 613 610 * devices that match the driver's criteria and binds. Returns the 614 611 * number of devices that were claimed by the driver, or a negative ··· 638 633 EXPORT_SYMBOL(acpi_bus_register_driver); 639 634 640 635 /** 641 - * acpi_bus_unregister_driver 642 - * -------------------------- 636 + * acpi_bus_unregister_driver - unregisters a driver with the APIC bus 637 + * @driver: driver to unregister 638 + * 643 639 * Unregisters a driver with the ACPI bus. Searches the namespace for all 644 640 * devices that match the driver's criteria and unbinds. 645 641 */ ··· 666 660 EXPORT_SYMBOL(acpi_bus_unregister_driver); 667 661 668 662 /** 669 - * acpi_bus_find_driver 670 - * -------------------- 663 + * acpi_bus_find_driver - check if there is a driver installed for the device 664 + * @device: device that we are trying to find a supporting driver for 665 + * 671 666 * Parses the list of registered drivers looking for a driver applicable for 672 667 * the specified device. 673 668 */