Skip to content

Commit

Permalink
Merge branch 'fixes-for-3.6' of git://git.kernel.org/pub/scm/linux/ke…
Browse files Browse the repository at this point in the history
…rnel/git/cooloney/linux-leds

Pull leds fixes/revert from Bryan Wu.

* 'fixes-for-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds:
  leds: renesas: fix error handling
  Revert "leds: use led_set_brightness in led_trigger_event"
  leds: lp8788: Fix updating scale configuration bits
  • Loading branch information
Linus Torvalds committed Aug 13, 2012
2 parents 1c212c6 + 4a5a418 commit 3bf671a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/leds/led-triggers.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void led_trigger_event(struct led_trigger *trig,
struct led_classdev *led_cdev;

led_cdev = list_entry(entry, struct led_classdev, trig_list);
led_set_brightness(led_cdev, brightness);
__led_set_brightness(led_cdev, brightness);
}
read_unlock(&trig->leddev_list_lock);
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/leds/leds-lp8788.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static int lp8788_led_init_device(struct lp8788_led *led,
/* scale configuration */
addr = LP8788_ISINK_CTRL;
mask = 1 << (cfg->num + LP8788_ISINK_SCALE_OFFSET);
val = cfg->scale << cfg->num;
val = cfg->scale << (cfg->num + LP8788_ISINK_SCALE_OFFSET);
ret = lp8788_update_bits(led->lp, addr, mask, val);
if (ret)
return ret;
Expand Down
2 changes: 1 addition & 1 deletion drivers/leds/leds-renesas-tpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ static int __devinit r_tpu_probe(struct platform_device *pdev)

if (!cfg) {
dev_err(&pdev->dev, "missing platform data\n");
goto err0;
return -ENODEV;
}

p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL);
Expand Down

0 comments on commit 3bf671a

Please sign in to comment.