mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-19 12:51:23 +02:00
Create a soc.c file to put the code for soc special settings. Signed-off-by: Yuan Yao <yao.yuan@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
13 lines
249 B
C
13 lines
249 B
C
/*
|
|
* Copyright 2015 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __FSL_LS102XA_SOC_H
|
|
#define __FSL_LS102XA_SOC_H
|
|
|
|
unsigned int get_soc_major_rev(void);
|
|
int arch_soc_init(void);
|
|
#endif /* __FSL_LS102XA_SOC_H */
|