Skip to content

Commit

Permalink
leds: lm3550: fix attribute-creation race
Browse files Browse the repository at this point in the history
Use the attribute groups of the led-class to create the mode attribute
during probe in order to avoid racing with userspace.

Signed-off-by: Johan Hovold <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
  • Loading branch information
jhovold authored and cooloney committed Jun 25, 2014
1 parent d0d480c commit 74c8503
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions drivers/leds/leds-lm3530.c
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,12 @@ static ssize_t lm3530_mode_set(struct device *dev, struct device_attribute
}
static DEVICE_ATTR(mode, 0644, lm3530_mode_get, lm3530_mode_set);

static struct attribute *lm3530_attrs[] = {
&dev_attr_mode.attr,
NULL
};
ATTRIBUTE_GROUPS(lm3530);

static int lm3530_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
Expand Down Expand Up @@ -436,6 +442,7 @@ static int lm3530_probe(struct i2c_client *client,
drvdata->led_dev.name = LM3530_LED_DEV;
drvdata->led_dev.brightness_set = lm3530_brightness_set;
drvdata->led_dev.max_brightness = MAX_BRIGHTNESS;
drvdata->led_dev.groups = lm3530_groups;

i2c_set_clientdata(client, drvdata);

Expand All @@ -461,26 +468,13 @@ static int lm3530_probe(struct i2c_client *client,
return err;
}

err = device_create_file(drvdata->led_dev.dev, &dev_attr_mode);
if (err < 0) {
dev_err(&client->dev, "File device creation failed: %d\n", err);
err = -ENODEV;
goto err_create_file;
}

return 0;

err_create_file:
led_classdev_unregister(&drvdata->led_dev);
return err;
}

static int lm3530_remove(struct i2c_client *client)
{
struct lm3530_data *drvdata = i2c_get_clientdata(client);

device_remove_file(drvdata->led_dev.dev, &dev_attr_mode);

lm3530_led_disable(drvdata);
led_classdev_unregister(&drvdata->led_dev);
return 0;
Expand Down

0 comments on commit 74c8503

Please sign in to comment.