dt-util.h 671 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2020 Gerson Fernando Budke <nandojve@gmail.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_DT_UTIL_H_
  7. #define ZEPHYR_INCLUDE_DT_BINDINGS_DT_UTIL_H_
  8. /*
  9. * This file exists to keep in-tree DTS clean. This means, only
  10. * #include <dt-bindings/foo.h> form should be included. The
  11. * <dt-bindings/dt-util.h> wraps <sys/util_macro.h> file exposing
  12. * all macro base definitions to DTS preprocessor. It provides
  13. * necessary background to elaborate complex constructions like
  14. * variable length macros with zero or more elements.
  15. */
  16. #include <sys/util_macro.h>
  17. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_DT_UTIL_H_ */