generic: 6.1, 6.6: mt7530: import pending patches
[openwrt/openwrt.git] / target / linux / generic / pending-6.6 / 745-12-net-dsa-mt7530-get-rid-of-mac_port_validate-member-o.patch
1 From 21d67c2fabfe40baf33202d3287b67b6c16f8382 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
3 Date: Mon, 22 Apr 2024 10:15:19 +0300
4 Subject: [PATCH 12/15] net: dsa: mt7530: get rid of mac_port_validate member
5 of mt753x_info
6 MIME-Version: 1.0
7 Content-Type: text/plain; charset=UTF-8
8 Content-Transfer-Encoding: 8bit
9
10 The mac_port_validate member of the mt753x_info structure is not being
11 used, remove it. Improve the member description section in the process.
12
13 Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
14 ---
15 drivers/net/dsa/mt7530.h | 10 +++-------
16 1 file changed, 3 insertions(+), 7 deletions(-)
17
18 --- a/drivers/net/dsa/mt7530.h
19 +++ b/drivers/net/dsa/mt7530.h
20 @@ -743,15 +743,14 @@ struct mt753x_pcs {
21
22 /* struct mt753x_info - This is the main data structure for holding the specific
23 * part for each supported device
24 + * @id: Holding the identifier to a switch model
25 + * @pcs_ops: Holding the pointer to the MAC PCS operations structure
26 * @sw_setup: Holding the handler to a device initialization
27 * @phy_read_c22: Holding the way reading PHY port using C22
28 * @phy_write_c22: Holding the way writing PHY port using C22
29 * @phy_read_c45: Holding the way reading PHY port using C45
30 * @phy_write_c45: Holding the way writing PHY port using C45
31 - * @phy_mode_supported: Check if the PHY type is being supported on a certain
32 - * port
33 - * @mac_port_validate: Holding the way to set addition validate type for a
34 - * certan MAC port
35 + * @mac_port_get_caps: Holding the handler that provides MAC capabilities
36 * @mac_port_config: Holding the way setting up the PHY attribute to a
37 * certain MAC port
38 */
39 @@ -770,9 +769,6 @@ struct mt753x_info {
40 int regnum, u16 val);
41 void (*mac_port_get_caps)(struct dsa_switch *ds, int port,
42 struct phylink_config *config);
43 - void (*mac_port_validate)(struct dsa_switch *ds, int port,
44 - phy_interface_t interface,
45 - unsigned long *supported);
46 void (*mac_port_config)(struct dsa_switch *ds, int port,
47 unsigned int mode,
48 phy_interface_t interface);