Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parisc: led: Fix LAN receive and transmit LEDs

Fix the LAN receive and LAN transmit LEDs, which where swapped
up to now.

Signed-off-by: Helge Deller <deller@gmx.de>
Cc: <stable@vger.kernel.org>

+2 -2
+2 -2
arch/parisc/include/asm/led.h
··· 11 11 #define LED1 0x02 12 12 #define LED0 0x01 /* bottom (or furthest left) LED */ 13 13 14 - #define LED_LAN_TX LED0 /* for LAN transmit activity */ 15 - #define LED_LAN_RCV LED1 /* for LAN receive activity */ 14 + #define LED_LAN_RCV LED0 /* for LAN receive activity */ 15 + #define LED_LAN_TX LED1 /* for LAN transmit activity */ 16 16 #define LED_DISK_IO LED2 /* for disk activity */ 17 17 #define LED_HEARTBEAT LED3 /* heartbeat */ 18 18