Commit c41455fb authored by Randy Dunlap's avatar Randy Dunlap Committed by Greg Kroah-Hartman

[PATCH] kernel-doc: drivers/base fixes

driver/base: add missing function parameters; eliminate all warnings.
Signed-off-by: default avatarRandy Dunlap <rdunlap@xenotime.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9480e307
...@@ -407,11 +407,11 @@ static struct device * next_device(struct klist_iter * i) ...@@ -407,11 +407,11 @@ static struct device * next_device(struct klist_iter * i)
/** /**
* device_for_each_child - device child iterator. * device_for_each_child - device child iterator.
* @dev: parent struct device. * @parent: parent struct device.
* @data: data for the callback. * @data: data for the callback.
* @fn: function to be called for each device. * @fn: function to be called for each device.
* *
* Iterate over @dev's child devices, and call @fn for each, * Iterate over @parent's child devices, and call @fn for each,
* passing it @data. * passing it @data.
* *
* We check the return of @fn each time. If it returns anything * We check the return of @fn each time. If it returns anything
......
...@@ -28,6 +28,7 @@ static struct device * next_device(struct klist_iter * i) ...@@ -28,6 +28,7 @@ static struct device * next_device(struct klist_iter * i)
/** /**
* driver_for_each_device - Iterator for devices bound to a driver. * driver_for_each_device - Iterator for devices bound to a driver.
* @drv: Driver we're iterating. * @drv: Driver we're iterating.
* @start: Device to begin with
* @data: Data to pass to the callback. * @data: Data to pass to the callback.
* @fn: Function to call for each device. * @fn: Function to call for each device.
* *
...@@ -57,7 +58,7 @@ EXPORT_SYMBOL_GPL(driver_for_each_device); ...@@ -57,7 +58,7 @@ EXPORT_SYMBOL_GPL(driver_for_each_device);
/** /**
* driver_find_device - device iterator for locating a particular device. * driver_find_device - device iterator for locating a particular device.
* @driver: The device's driver * @drv: The device's driver
* @start: Device to begin with * @start: Device to begin with
* @data: Data to pass to match function * @data: Data to pass to match function
* @match: Callback function to check device * @match: Callback function to check device
......
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