Driver core: device_add_attrs() cleanup

Clean up the coding in device_add_attrs() a bit.

Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Andrew Morton 2007-02-13 22:39:26 -08:00 committed by Greg Kroah-Hartman
parent 873760fbf4
commit 4aca67e5f5

View File

@ -329,21 +329,19 @@ static int device_add_attrs(struct bus_type * bus, struct device * dev)
int error = 0;
int i;
if (bus->dev_attrs) {
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)
goto Err;
}
}
Done:
return error;
Err:
if (error) {
while (--i >= 0)
device_remove_file(dev, &bus->dev_attrs[i]);
goto Done;
break;
}
}
return error;
}
static void device_remove_attrs(struct bus_type * bus, struct device * dev)
{