mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 06:45:22 +00:00
To move forward and remove use of Kconfig in dts files lets just create SoC specific dtsi files that the boards can include. This lets us remove: CONFIG_SOC_CC3220SF CONFIG_SOC_MSP432P401R Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
14 lines
237 B
C
14 lines
237 B
C
/*
|
|
* Copyright (c) 2018 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __DT_MEM_H
|
|
#define __DT_MEM_H
|
|
|
|
#define DT_SIZE_K(x) ((x) * 1024)
|
|
#define DT_SIZE_M(x) ((x) * 1024 * 1024)
|
|
|
|
#endif /* __DT_BINDING_TI_MEM_H */
|