The patch titled Fix parameter names in drivers/base/class.c has been added to the -mm tree. Its filename is fix-parameter-names-in-drivers-base-classc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix parameter names in drivers/base/class.c From: Rolf Eike Beer <eike-kernel@xxxxxxxxx> Change parameter names to match arguments of functions. Signed-off-by: Rolf Eike Beer <eike-kernel@xxxxxxxxx> Cc: Martin Waitz <tali@xxxxxxxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/base/class.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/base/class.c~fix-parameter-names-in-drivers-base-classc drivers/base/class.c --- a/drivers/base/class.c~fix-parameter-names-in-drivers-base-classc +++ a/drivers/base/class.c @@ -229,7 +229,7 @@ error: /** * class_destroy - destroys a struct class structure - * @cs: pointer to the struct class that is to be destroyed + * @cls: pointer to the struct class that is to be destroyed * * Note, the pointer to be destroyed must have been created with a call * to class_create(). @@ -662,9 +662,9 @@ int class_device_register(struct class_d /** * class_device_create - creates a class device and registers it with sysfs - * @cs: pointer to the struct class that this device should be registered to. + * @cls: pointer to the struct class that this device should be registered to. * @parent: pointer to the parent struct class_device of this new device, if any. - * @dev: the dev_t for the char device to be added. + * @devt: the dev_t for the char device to be added. * @device: a pointer to a struct device that is assiociated with this class device. * @fmt: string for the class device's name * @@ -769,7 +769,7 @@ void class_device_unregister(struct clas /** * class_device_destroy - removes a class device that was created with class_device_create() * @cls: the pointer to the struct class that this device was registered * with. - * @dev: the dev_t of the device that was previously registered. + * @devt: the dev_t of the device that was previously registered. * * This call unregisters and cleans up a class device that was created with a * call to class_device_create() _ Patches currently in -mm which might be from eike-kernel@xxxxxxxxx are git-mtd.patch add-docbook-documentation-for-workqueue-functions.patch include-documentation-for-functions-in-drivers-base-classc.patch fix-parameter-names-in-drivers-base-classc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html