mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
16 lines
251 B
C
16 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;
|
||
|
}
|