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

Documentation: Tidy up some drivers/base/core.c kerneldoc content.

Standardize the indentation, and switch the order of a couple
kerneldoc entries to match the parameter order. No functional change.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Robert P. J. Day and committed by
Greg Kroah-Hartman
f8878dcb 9447057e

+7 -7
+7 -7
drivers/base/core.c
··· 193 193 EXPORT_SYMBOL_GPL(device_show_bool); 194 194 195 195 /** 196 - * device_release - free device structure. 197 - * @kobj: device's kobject. 196 + * device_release - free device structure. 197 + * @kobj: device's kobject. 198 198 * 199 - * This is called once the reference count for the object 200 - * reaches 0. We forward the call to the device's release 201 - * method, which should handle actually freeing the structure. 199 + * This is called once the reference count for the object 200 + * reaches 0. We forward the call to the device's release 201 + * method, which should handle actually freeing the structure. 202 202 */ 203 203 static void device_release(struct kobject *kobj) 204 204 { ··· 1334 1334 /** 1335 1335 * device_for_each_child - device child iterator. 1336 1336 * @parent: parent struct device. 1337 - * @data: data for the callback. 1338 1337 * @fn: function to be called for each device. 1338 + * @data: data for the callback. 1339 1339 * 1340 1340 * Iterate over @parent's child devices, and call @fn for each, 1341 1341 * passing it @data. ··· 1363 1363 /** 1364 1364 * device_find_child - device iterator for locating a particular device. 1365 1365 * @parent: parent struct device 1366 - * @data: Data to pass to match function 1367 1366 * @match: Callback function to check device 1367 + * @data: Data to pass to match function 1368 1368 * 1369 1369 * This is similar to the device_for_each_child() function above, but it 1370 1370 * returns a reference to a device that is 'found' for later use, as