Skip to content

Commit

Permalink
Merge branch 'bugfix/ethernet_compile_issue' into 'master'
Browse files Browse the repository at this point in the history
fix(FCS-1331): Fixed a compilation failure with ethernet phy lan8720

See merge request application/esp-at!1472
  • Loading branch information
xcguang committed Nov 23, 2023
2 parents dd52187 + 3f6f770 commit 389b3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/at/src/at_eth_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ bool esp_at_get_eth_default_config(esp_eth_config_t* config)
#elif CONFIG_PHY_RTL8201
esp_eth_phy_t *phy = esp_eth_phy_new_rtl8201(&phy_config);
#elif CONFIG_PHY_LAN8720
esp_eth_phy_t *phy = esp_eth_phy_new_lan8720(&phy_config);
esp_eth_phy_t *phy = esp_eth_phy_new_lan87xx(&phy_config);
#elif CONFIG_PHY_DP83848
esp_eth_phy_t *phy = esp_eth_phy_new_dp83848(&phy_config);
#endif
Expand Down

0 comments on commit 389b3ab

Please sign in to comment.