summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-08-27 13:46:11 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-09-23 10:48:12 +0200
commit1d48736048bfb34f381c6bdc15614b7924798643 (patch)
tree4cff3dd410ee931d3158250d7f6839c955679cfa /arch
parentfc22ec19c46f1597b4f7c3a47cbd65712bc267c2 (diff)
downloadlinux-1d48736048bfb34f381c6bdc15614b7924798643.tar.gz
linux-1d48736048bfb34f381c6bdc15614b7924798643.tar.bz2
linux-1d48736048bfb34f381c6bdc15614b7924798643.zip
parisc: led: Fix LAN receive and transmit LEDs
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/parisc/include/asm/led.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/include/asm/led.h b/arch/parisc/include/asm/led.h
index 6de13d08a388..b70b9094fb7c 100644
--- a/arch/parisc/include/asm/led.h
+++ b/arch/parisc/include/asm/led.h
@@ -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 */