mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-05 19:24:48 +00:00

This commit adds a function to get the board serial number. In snapdragon it's actually the eMMC serial number. Function added in a new file misc.c that will include further snapdragon miscellaneous functions. Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
12 lines
192 B
C
12 lines
192 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);
|
|
|
|
#endif
|