diff options
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/pcm051/Kconfig | 9 | ||||
-rw-r--r-- | board/phytec/pcm051/board.c | 2 |
2 files changed, 1 insertions, 10 deletions
diff --git a/board/phytec/pcm051/Kconfig b/board/phytec/pcm051/Kconfig index bb987156e6..2cc0d8872d 100644 --- a/board/phytec/pcm051/Kconfig +++ b/board/phytec/pcm051/Kconfig @@ -12,13 +12,4 @@ config SYS_SOC config SYS_CONFIG_NAME default "pcm051" -config DM - default y - -config DM_GPIO - default y - -config DM_SERIAL - default y - endif diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c index 1071662ea9..1bf9d730e5 100644 --- a/board/phytec/pcm051/board.c +++ b/board/phytec/pcm051/board.c @@ -228,7 +228,7 @@ int board_eth_init(bd_t *bis) mac_addr[4] = mac_lo & 0xFF; mac_addr[5] = (mac_lo & 0xFF00) >> 8; - if (is_valid_ether_addr(mac_addr)) + if (is_valid_ethaddr(mac_addr)) eth_setenv_enetaddr("ethaddr", mac_addr); else goto try_usbether; |