1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 17:30:43 +03:00

More led driver fixes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8358 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-08-06 19:25:12 +00:00
parent f3fd9a2cbb
commit ae1dbe5655

View File

@ -15,11 +15,10 @@
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/err.h>
#include <linux/delay.h>
#include <asm/io.h>
#include <asm/gpio.h>
/* This is just for testing purpose */
int gpio;
module_param(gpio, int, 0444);
MODULE_PARM_DESC(gpio, " GPIO line");
@ -29,6 +28,7 @@ static void rdc321x_led_set(struct led_classdev *led_cdev, enum led_brightness b
gpio_set_value(gpio, brightness ? 1 : 0);
}
/* The DMZ led is at GPIO line 1 */
static struct led_classdev rdc321x_dmz_led = {
.name = "rdc321x:dmz",
.brightness_set = rdc321x_led_set,