mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
1f0d2e870d
The AD401 board is the Amlogic A1 SoC reference board Signed-off-by: Igor Prusov <ivprusov@sberdevices.ru> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://lore.kernel.org/r/20230505125639.3605-6-ivprusov@sberdevices.ru Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
15 lines
251 B
C
15 lines
251 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2023 SberDevices, Inc.
|
|
* Author: Igor Prusov <ivprusov@sberdevices.ru>
|
|
*/
|
|
|
|
#include <init.h>
|
|
#include <asm/arch/eth.h>
|
|
|
|
int misc_init_r(void)
|
|
{
|
|
meson_generate_serial_ethaddr();
|
|
|
|
return 0;
|
|
}
|