Skip to content

Commit

Permalink
leds: just ignore invalid GPIOs in leds-gpio
Browse files Browse the repository at this point in the history
Fix build problems with leds-gpio:

  CC      drivers/leds/leds-gpio.o
drivers/leds/leds-gpio.c: In function 'create_gpio_led':
drivers/leds/leds-gpio.c:85: warning: 'return' with no value, in function returning non-void

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
  • Loading branch information
David Brownell authored and Richard Purdie committed Apr 8, 2009
1 parent 577c9c4 commit ac15e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/leds/leds-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ac15e95

Please sign in to comment.