mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 12:54:37 +00:00

When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
24 lines
577 B
C
24 lines
577 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2022 Marek Vasut <marex@denx.de>
|
|
* Copyright 2022 DENX Software Engineering GmbH, Philip Oberfichtner <pro@denx.de>
|
|
*/
|
|
|
|
#include <asm/arch/imx-regs.h>
|
|
#include <asm/arch/sys_proto.h>
|
|
#include <common.h>
|
|
#include <net.h>
|
|
#include "dh_imx.h"
|
|
|
|
int dh_imx_get_mac_from_fuse(unsigned char *enetaddr)
|
|
{
|
|
/*
|
|
* If IIM fuses contain valid MAC address, use it.
|
|
* The IIM MAC address fuses are NOT programmed by default.
|
|
*/
|
|
imx_get_mac_from_fuse(0, enetaddr);
|
|
if (!is_valid_ethaddr(enetaddr))
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
}
|