diff options
author | Ong Boon Leong <boon.leong.ong@intel.com> | 2021-03-15 13:27:09 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-15 12:53:12 -0700 |
commit | e5e5b771f684c22b25c67df85d2deb43901f7b95 (patch) | |
tree | 4f7465052e933b99aa627b92c7e65d90e881ea06 /include/linux/stmmac.h | |
parent | ab39385021d1e0b4cd6cc521dc35c2fe659bbddf (diff) |
net: stmmac: make in-band AN mode parsing is supported for non-DT
Not all platform uses DT, so phylink_parse_mode() will skip in-band setup
of pl->supported and pl->link_config.advertising entirely. So, we add the
setting of ovr_an_inband flag to make it works for non-DT platform.
Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/stmmac.h')
-rw-r--r-- | include/linux/stmmac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h index a302982de2d7..722dc167b5c9 100644 --- a/include/linux/stmmac.h +++ b/include/linux/stmmac.h @@ -81,6 +81,7 @@ struct stmmac_mdio_bus_data { unsigned int phy_mask; unsigned int has_xpcs; + unsigned int xpcs_an_inband; int *irqs; int probed_phy_irq; bool needs_reset; |