1
0
Fork 0

Merge branch 'for-linus' of git://git.o-hand.com/linux-rpurdie-leds

* 'for-linus' of git://git.o-hand.com/linux-rpurdie-leds:
  leds: just ignore invalid GPIOs in leds-gpio
hifive-unleashed-5.1
Linus Torvalds 2009-04-13 08:19:45 -07:00
commit 29a1e26feb
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ static int __devinit create_gpio_led(const struct gpio_led *template,
if (!gpio_is_valid(template->gpio)) {
printk(KERN_INFO "Skipping unavilable LED gpio %d (%s)\n",
template->gpio, template->name);
return;
return 0;
}
ret = gpio_request(template->gpio, template->name);