1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Use the dmz led as diagnostic led

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8380 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2007-08-08 12:23:41 +00:00
parent 8ec76b7a55
commit ab0edce43a
3 changed files with 22 additions and 8 deletions

View File

@@ -18,14 +18,9 @@
#include <asm/gpio.h>
/* This is just for testing purpose */
int gpio=-1;
module_param(gpio, int, 0444);
MODULE_PARM_DESC(gpio, " GPIO line");
static void rdc321x_led_set(struct led_classdev *led_cdev, enum led_brightness brightness)
{
gpio_set_value(gpio, brightness ? 1 : 0);
gpio_set_value(1, brightness ? 1 : 0);
}
/* The DMZ led is at GPIO line 1 */
@@ -58,7 +53,7 @@ static int __init rdc321x_leds_init(void)
{
int ret;
ret = gpio+1?platform_driver_register(&rdc321x_leds_driver):-EINVAL;
ret = platform_driver_register(&rdc321x_leds_driver);
return ret;
}