realtek: dsa: rtl93xx: Keep mgmt recv action functions local

Th function to set the mangement frames receive actions is only used in the
SoC specific files. They can therefore be kept local without any
declaration in headers.

Signed-off-by: Sven Eckelmann <se@simonwunderlich.de>
Link: https://github.com/openwrt/openwrt/pull/20704
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Sven Eckelmann 2025-11-07 15:08:17 +01:00 committed by Hauke Mehrtens
parent fa8ac8e562
commit 14d3ea43ab
3 changed files with 4 additions and 6 deletions

View file

@ -205,7 +205,4 @@ void rtl930x_pie_rule_dump_raw(u32 r[]);
void rtl931x_print_matrix(void);
void rtldsa_930x_set_receive_management_action(int port, rma_ctrl_t type, action_type_t action);
void rtldsa_931x_set_receive_management_action(int port, rma_ctrl_t type, action_type_t action);
#endif /* _NET_DSA_RTL83XX_H */

View file

@ -738,8 +738,8 @@ static void rtl930x_write_mcast_pmask(int idx, u64 portmask)
rtl_table_release(q);
}
void rtldsa_930x_set_receive_management_action(int port, rma_ctrl_t type,
action_type_t action)
static void rtldsa_930x_set_receive_management_action(int port, rma_ctrl_t type,
action_type_t action)
{
u32 shift;
u32 value;

View file

@ -389,7 +389,8 @@ void rtl931x_print_matrix(void)
rtl_table_release(r);
}
void rtldsa_931x_set_receive_management_action(int port, rma_ctrl_t type, action_type_t action)
static void rtldsa_931x_set_receive_management_action(int port, rma_ctrl_t type,
action_type_t action)
{
u32 shift;
u32 value;