dt-structs.h 311 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2016 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __DT_STTUCTS
  7. #define __DT_STTUCTS
  8. /* These structures may only be used in SPL */
  9. #if CONFIG_IS_ENABLED(OF_PLATDATA)
  10. struct phandle_2_cell {
  11. const void *node;
  12. int id;
  13. };
  14. #include <generated/dt-structs.h>
  15. #endif
  16. #endif