Merge tag 'u-boot-amlogic-20201105' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / include / dt-structs.h
index c0f5695..f0e1c9c 100644 (file)
@@ -1,7 +1,6 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright (c) 2016 Google, Inc
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #ifndef __DT_STRUCTS
@@ -9,18 +8,20 @@
 
 /* These structures may only be used in SPL */
 #if CONFIG_IS_ENABLED(OF_PLATDATA)
+struct driver_info;
+
 struct phandle_0_arg {
-       const void *node;
+       uint idx;
        int arg[0];
 };
 
 struct phandle_1_arg {
-       const void *node;
+       uint idx;
        int arg[1];
 };
 
 struct phandle_2_arg {
-       const void *node;
+       uint idx;
        int arg[2];
 };
 #include <generated/dt-structs-gen.h>