mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
e0b04a1525
Add support for generation of unique MAC address that is derived from board serial. Algorithm for generation of MAC taken from LK. Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
13 lines
229 B
C
13 lines
229 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Snapdragon DRAM
|
|
* Copyright (C) 2018 Ramon Fried <ramon.fried@gmail.com>
|
|
*/
|
|
|
|
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
u32 msm_board_serial(void);
|
|
void msm_generate_mac_addr(u8 *mac);
|
|
|
|
#endif
|