u-boot-brain/include/dt-structs.h
Simon Glass 08c3b88dd1 dm: core: Avoid void * in the of-platdata structs
These pointers point to drivers. Update the definition to make this clear.

Signed-off-by: Simon Glass <sjg@chromium.org>
2020-10-29 14:42:17 -06:00

31 lines
499 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (c) 2016 Google, Inc
*/
#ifndef __DT_STRUCTS
#define __DT_STRUCTS
/* These structures may only be used in SPL */
#if CONFIG_IS_ENABLED(OF_PLATDATA)
struct driver_info;
struct phandle_0_arg {
const struct driver_info *node;
int arg[0];
};
struct phandle_1_arg {
const struct driver_info *node;
int arg[1];
};
struct phandle_2_arg {
const struct driver_info *node;
int arg[2];
};
#include <generated/dt-structs-gen.h>
#endif
#endif