mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
a1dbe57d2d
Common arch_early_init_r() is used in "arc/lib/cpu.c" for all ARC boards so there's no sense in separate per-board definitions. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
17 lines
363 B
C
17 lines
363 B
C
/*
|
|
* Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_ARC_CONFIG_H_
|
|
#define __ASM_ARC_CONFIG_H_
|
|
|
|
#define CONFIG_SYS_GENERIC_BOARD
|
|
#define CONFIG_SYS_GENERIC_GLOBAL_DATA
|
|
#define CONFIG_SYS_BOOT_RAMDISK_HIGH
|
|
#define CONFIG_ARCH_EARLY_INIT_R
|
|
|
|
#define CONFIG_LMB
|
|
|
|
#endif /*__ASM_ARC_CONFIG_H_ */
|