diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 12:10:01 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 12:10:01 +0000 |
commit | 6600fab89300162a580bd4b689939e380fcfdd78 (patch) | |
tree | 0f290705303c4ba0ab8bc5510f567eac88b5c602 /target/linux/ar71xx/files/arch/mips/include | |
parent | a1a9727fbfa4709e5c3c01d8129f0bd35e74a5b4 (diff) | |
download | mtk-20170518-6600fab89300162a580bd4b689939e380fcfdd78.zip mtk-20170518-6600fab89300162a580bd4b689939e380fcfdd78.tar.gz mtk-20170518-6600fab89300162a580bd4b689939e380fcfdd78.tar.bz2 |
ar71xx: add LED driver for the RB750
SVN-Revision: 20051
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/include')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/mach-rb750.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/mach-rb750.h b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/mach-rb750.h index 8165da3..661ba4e 100644 --- a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/mach-rb750.h +++ b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/mach-rb750.h @@ -49,6 +49,18 @@ #define RB750_LED_BITS (RB750_LED_PORT1 | RB750_LED_PORT2 | RB750_LED_PORT3 | \ RB750_LED_PORT4 | RB750_LED_PORT5 | RB750_LED_ACT) +struct rb750_led_data { + char *name; + char *default_trigger; + u32 mask; + int active_low; +}; + +struct rb750_led_platform_data { + int num_leds; + struct rb750_led_data *leds; +}; + int rb750_latch_change(u32 mask_clr, u32 mask_set); #endif /* _MACH_RB750_H */
\ No newline at end of file |