parisc: led: Fix LAN receive and transmit LEDs
authorHelge Deller <deller@gmx.de>
Sun, 27 Aug 2023 11:46:11 +0000 (13:46 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 19 Sep 2023 10:27:57 +0000 (12:27 +0200)
commit 4db89524b084f712a887256391fc19d9f66c8e55 upstream.

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/parisc/include/asm/led.h

index 6de13d08a3886b4dbef50cb5a9e5367715fc816a..b70b9094fb7cd2a314dabef5597a8d31fdf939b2 100644 (file)
@@ -11,8 +11,8 @@
 #define        LED1            0x02
 #define        LED0            0x01            /* bottom (or furthest left) LED */
 
-#define        LED_LAN_TX      LED0            /* for LAN transmit activity */
-#define        LED_LAN_RCV     LED1            /* for LAN receive activity */
+#define        LED_LAN_RCV     LED0            /* for LAN receive activity */
+#define        LED_LAN_TX      LED1            /* for LAN transmit activity */
 #define        LED_DISK_IO     LED2            /* for disk activity */
 #define        LED_HEARTBEAT   LED3            /* heartbeat */