Commit 82a23416adaf34da0dd842735172640452ccfa10

Authored by Lokesh Vutla
1 parent e4910d63e2

driver: net: cpsw: add support for RGMII id mode support for am43xx variants

Commit 6ca5f482a38ce ("driver: net: cpsw: add support for RGMII id mode
support and RMII clock source selection") missed update for am43xx variants.
Updating it here.

Fixes: 6ca5f482a38ce ("driver: net: cpsw: add support for RGMII id mode support and RMII clock source selection")
Reported-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -1270,6 +1270,8 @@
1270 1270 {
1271 1271 if (!strcmp(compat, "ti,am3352-cpsw-phy-sel"))
1272 1272 cpsw_gmii_sel_am3352(priv, phy_mode);
  1273 + if (!strcmp(compat, "ti,am43xx-cpsw-phy-sel"))
  1274 + cpsw_gmii_sel_am3352(priv, phy_mode);
1273 1275 else if (!strcmp(compat, "ti,dra7xx-cpsw-phy-sel"))
1274 1276 cpsw_gmii_sel_dra7xx(priv, phy_mode);
1275 1277 }