realtek: Change LLTP register to LLDP
authorKevin Jilissen <info@kevinjilissen.nl>
Sat, 4 May 2024 14:11:00 +0000 (16:11 +0200)
committerSander Vanheule <sander@svanheule.net>
Fri, 10 May 2024 14:03:51 +0000 (16:03 +0200)
These registers control the handling of Link Layer Discovery Protocol
(LLDP) packets. This seems to be a typo in the naming.

Signed-off-by: Kevin Jilissen <info@kevinjilissen.nl>
target/linux/realtek/files-5.15/drivers/net/dsa/rtl83xx/rtl838x.c
target/linux/realtek/files-5.15/drivers/net/dsa/rtl83xx/rtl838x.h
target/linux/realtek/files-5.15/drivers/net/dsa/rtl83xx/rtl839x.c
target/linux/realtek/files-5.15/drivers/net/dsa/rtl83xx/rtl931x.c

index adff404fddd43027f102f68751e01ee1a338e4c2..d93087f5b1aa6cb6b17e98e7747602841debccb4 100644 (file)
@@ -1678,9 +1678,9 @@ void rtl838x_set_receive_management_action(int port, rma_ctrl_t type, action_typ
                sw_w32_mask(3 << ((port & 0xf) << 1), (action & 0x3) << ((port & 0xf) << 1),
                            RTL838X_RMA_PTP_CTRL + ((port >> 4) << 2));
                break;
-       case LLTP:
+       case LLDP:
                sw_w32_mask(3 << ((port & 0xf) << 1), (action & 0x3) << ((port & 0xf) << 1),
-                           RTL838X_RMA_LLTP_CTRL + ((port >> 4) << 2));
+                           RTL838X_RMA_LLDP_CTRL + ((port >> 4) << 2));
                break;
        default:
                break;
index a642c747756c70c2db4a105dc64ce058acd5ebff..261af32bb46ee7cf669d0b04e04926a6c3127b4b 100644 (file)
@@ -425,7 +425,7 @@ typedef enum {
        PTP,
        PTP_UDP,
        PTP_ETH2,
-       LLTP,
+       LLDP,
        EAPOL,
        GRATARP,
 } rma_ctrl_t;
@@ -449,10 +449,10 @@ typedef enum {
 #define RTL930X_RMA_PTP_CTRL                   (0x9E88)
 #define RTL931X_RMA_PTP_CTRL                   (0x8834)
 
-#define RTL838X_RMA_LLTP_CTRL                  (0x4340)
-#define RTL839X_RMA_LLTP_CTRL                  (0x124C)
-#define RTL930X_RMA_LLTP_CTRL                  (0x9EFC)
-#define RTL931X_RMA_LLTP_CTRL                  (0x8918)
+#define RTL838X_RMA_LLDP_CTRL                  (0x4340)
+#define RTL839X_RMA_LLDP_CTRL                  (0x124C)
+#define RTL930X_RMA_LLDP_CTRL                  (0x9EFC)
+#define RTL931X_RMA_LLDP_CTRL                  (0x8918)
 
 #define RTL930X_RMA_EAPOL_CTRL                 (0x9F08)
 #define RTL931X_RMA_EAPOL_CTRL                 (0x8930)
index ff80a9074edf1eb714b941542e67296c272173e4..5889cea6d667365d84daa254497804588b64e9cf 100644 (file)
@@ -1814,9 +1814,9 @@ void rtl839x_set_receive_management_action(int port, rma_ctrl_t type, action_typ
                sw_w32_mask(3 << ((port & 0xf) << 1), (action & 0x3) << ((port & 0xf) << 1),
                            RTL839X_RMA_PTP_CTRL + ((port >> 4) << 2));
                break;
-       case LLTP:
+       case LLDP:
                sw_w32_mask(3 << ((port & 0xf) << 1), (action & 0x3) << ((port & 0xf) << 1),
-                           RTL839X_RMA_LLTP_CTRL + ((port >> 4) << 2));
+                           RTL839X_RMA_LLDP_CTRL + ((port >> 4) << 2));
                break;
        default:
                break;
index 07ac25c743f9d2a0a7679afe2d5f3cbb632f69b3..25ad4eaa11da6b33530c173e393e5402e1267ac2 100644 (file)
@@ -516,8 +516,8 @@ void rtl931x_set_receive_management_action(int port, rma_ctrl_t type, action_typ
        case PTP_ETH2:
                sw_w32_mask(3, value, RTL931X_RMA_PTP_CTRL + (port << 2));
        break;
-       case LLTP:
-               sw_w32_mask(7 << ((port % 10) * 3), value << ((port % 10) * 3), RTL931X_RMA_LLTP_CTRL + ((port / 10) << 2));
+       case LLDP:
+               sw_w32_mask(7 << ((port % 10) * 3), value << ((port % 10) * 3), RTL931X_RMA_LLDP_CTRL + ((port / 10) << 2));
        break;
        case EAPOL:
                sw_w32_mask(7 << ((port % 10) * 3), value << ((port % 10) * 3), RTL931X_RMA_EAPOL_CTRL + ((port / 10) << 2));