From: Helge Deller Date: Sun, 27 Aug 2023 11:46:11 +0000 (+0200) Subject: parisc: led: Fix LAN receive and transmit LEDs X-Git-Tag: v6.6.7~2077^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4db89524b084f712a887256391fc19d9f66c8e55;p=platform%2Fkernel%2Flinux-starfive.git 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 Cc: --- diff --git a/arch/parisc/include/asm/led.h b/arch/parisc/include/asm/led.h index d1a016e..3409c88 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 */