The patch titled Fix warning in device_add_attrs has been added to the -mm tree. Its filename is fix-warning-in-device_add_attrs.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix warning in device_add_attrs From: Jean Delvare <khali@xxxxxxxxxxxx> Fix the following warning which I see with gcc 3.2: drivers/base/core.c: In function `device_add_attrs': drivers/base/core.c:251: warning: `i' might be used uninitialized in this function It's a false positive, but it can be worked around easily, and the new code makes rather more sense. [akpm@xxxxxxxxxxxxxxxxxxxx: rework it for changes in Greg's tree and -mm] Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/bus.c | 22 ++++++++++------------ 1 files changed, 10 insertions(+), 12 deletions(-) diff -puN drivers/base/bus.c~fix-warning-in-device_add_attrs drivers/base/bus.c --- a/drivers/base/bus.c~fix-warning-in-device_add_attrs +++ a/drivers/base/bus.c @@ -324,27 +324,25 @@ int bus_for_each_drv(struct bus_type * b return error; } -static int device_add_attrs(struct bus_type * bus, struct device * dev) +static int device_add_attrs(struct bus_type *bus, struct device *dev) { int error = 0; int i; - if (bus->dev_attrs) { - for (i = 0; attr_name(bus->dev_attrs[i]); i++) { - error = device_create_file(dev,&bus->dev_attrs[i]); - if (error) - goto Err; + if (!bus->dev_attrs) + return 0; + + for (i = 0; attr_name(bus->dev_attrs[i]); i++) { + error = device_create_file(dev,&bus->dev_attrs[i]); + if (error) { + while (--i >= 0) + device_remove_file(dev, &bus->dev_attrs[i]); + break; } } - Done: return error; - Err: - while (--i >= 0) - device_remove_file(dev,&bus->dev_attrs[i]); - goto Done; } - static void device_remove_attrs(struct bus_type * bus, struct device * dev) { int i; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are git-alsa.patch fix-warning-in-device_add_attrs.patch matroxfb-use-kzalloc.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