Igor Prusov | 9ad0ebb | 2023-05-05 15:56:39 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * (C) Copyright 2023 SberDevices, Inc. | ||||
4 | * Author: Igor Prusov <ivprusov@sberdevices.ru> | ||||
5 | */ | ||||
6 | |||||
7 | #include <init.h> | ||||
8 | #include <asm/arch/eth.h> | ||||
9 | |||||
10 | int misc_init_r(void) | ||||
11 | { | ||||
12 | meson_generate_serial_ethaddr(); | ||||
13 | |||||
14 | return 0; | ||||
15 | } |