1 /* 2 * Copyright (c) 2021 Linaro Limited 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_DTS_COMMON_FREQ_H_ 8 #define ZEPHYR_DTS_COMMON_FREQ_H_ 9 10 #define DT_FREQ_K(x) ((x) * 1000) 11 #define DT_FREQ_M(x) (DT_FREQ_K(x) * 1000) 12 13 #endif /* ZEPHYR_DTS_COMMON_FREQ_H_ */ 14