diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-31 00:54:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-31 00:54:57 -0400 |
commit | feabb06bd70551668540f2305047675667f5f60f (patch) | |
tree | da65dedf73cae1e6fa59f923267a1b25501523a9 /arch/arm/mach-omap1/leds-osk.c | |
parent | 62e6f1e8bb7c48c02b8bdb3085c5f6365682149b (diff) | |
parent | a98b38b83db3d377ede6b72cebe7ed2dc4127766 (diff) |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 4561/1: i.MX/MX1 GPIO parenthes omission and input setup fix
[ARM] 4557/1: Fix PXA irq gpio initialization
[ARM] 4551/1: s3c24xx: fix wrong virtual address offsets
[ARM] 4552/1: i.MX/MX1 GPIO output setup fix
[ARM] 4553/1: ARM at91: define FIQ_START
[ARM] 4554/1: replace consistent_sync() with flush_ioremap_region()
ARM: OMAP: Enable serial idling and wakeup features
ARM: OMAP2: Force APLLs always active
ARM: OMAP: H3 workqueue fixes
ARM: OMAP: OSK led fixes
ARM: OMAP: fix OMAP1 dmtimer build warning
ARM: OMAP: Fix 32k timer unsupported one-shot mode
Diffstat (limited to 'arch/arm/mach-omap1/leds-osk.c')
-rw-r--r-- | arch/arm/mach-omap1/leds-osk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap1/leds-osk.c b/arch/arm/mach-omap1/leds-osk.c index 0cbf1b0071f8..86de303ecab2 100644 --- a/arch/arm/mach-omap1/leds-osk.c +++ b/arch/arm/mach-omap1/leds-osk.c | |||
@@ -133,13 +133,13 @@ void osk_leds_event(led_event_t evt) | |||
133 | mistral_setled(); | 133 | mistral_setled(); |
134 | break; | 134 | break; |
135 | 135 | ||
136 | case led_idle_start: | 136 | case led_idle_start: /* idle == off */ |
137 | hw_led_state |= IDLE_LED; | 137 | hw_led_state &= ~IDLE_LED; |
138 | mistral_setled(); | 138 | mistral_setled(); |
139 | break; | 139 | break; |
140 | 140 | ||
141 | case led_idle_end: | 141 | case led_idle_end: |
142 | hw_led_state &= ~IDLE_LED; | 142 | hw_led_state |= IDLE_LED; |
143 | mistral_setled(); | 143 | mistral_setled(); |
144 | break; | 144 | break; |
145 | 145 | ||