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
This commit is contained in:
@@ -82,7 +82,7 @@ static int __devinit create_gpio_led(const struct gpio_led *template,
|
|||||||
if (!gpio_is_valid(template->gpio)) {
|
if (!gpio_is_valid(template->gpio)) {
|
||||||
printk(KERN_INFO "Skipping unavilable LED gpio %d (%s)\n",
|
printk(KERN_INFO "Skipping unavilable LED gpio %d (%s)\n",
|
||||||
template->gpio, template->name);
|
template->gpio, template->name);
|
||||||
return;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = gpio_request(template->gpio, template->name);
|
ret = gpio_request(template->gpio, template->name);
|
||||||
|
Reference in New Issue
Block a user