global: Migrate CONFIG_PHY_ID to CFG

Perform a simple rename of CONFIG_PHY_ID to CFG_PHY_ID

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2022-12-04 10:13:28 -05:00
parent e9212bffe3
commit 52d596eabb
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ int board_eth_init(struct bd_info *bis)
/* Set peripheral pins. */ /* Set peripheral pins. */
at91_macb_hw_init(); at91_macb_hw_init();
/* Basic EMAC initialization. */ /* Basic EMAC initialization. */
if (macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, CONFIG_PHY_ID)) if (macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, CFG_PHY_ID))
return -1; return -1;
/* /*
* Early board revisions have a pull-down at the PHY's MODE0 * Early board revisions have a pull-down at the PHY's MODE0

View file

@ -48,7 +48,7 @@
/* JFFS2 */ /* JFFS2 */
/* Ethernet */ /* Ethernet */
#define CONFIG_PHY_ID 0 #define CFG_PHY_ID 0
/* MMC */ /* MMC */
#ifdef CONFIG_CMD_MMC #ifdef CONFIG_CMD_MMC