blob: b6e83b3771601e64a8cba69c25758d4504c238ee [file] [log] [blame]
Erwan Gouriou3b510692021-04-02 17:10:17 +02001/*
2 * Copyright (c) 2021 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef __DT_FREQ_H
8#define __DT_FREQ_H
9
10#define DT_FREQ_K(x) ((x) * 1000)
11#define DT_FREQ_M(x) ((x) * 1000 * 1000)
12
13#endif /* __DT_FREQ_H */