mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
662cfa03cb
These are only used in one place, so move them there. Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
281 B
C
14 lines
281 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2017 Tuomas Tynkkynen
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
/* Physical memory map */
|
|
#define CFG_SYS_SDRAM_BASE 0x40000000
|
|
|
|
/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
|
|
|
|
#endif /* __CONFIG_H */
|