diff options
| author | Anup Patel <[email protected]> | 2022-05-13 09:27:12 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-05-13 09:27:12 +0530 |
| commit | 4eacd8229b63bcc220fbdaa4c294ea5ae8c978f0 (patch) | |
| tree | ca4e10ff4088cb50fbba6424bd1bb0b647fa1248 /include/sbi_utils | |
| parent | 998ed43fde10c64b3e949a904746464b23796971 (diff) | |
lib: utils/gpio: Generate FDT gpio driver list at compile-time
Instead of having FDT gpio driver list hard-coded in the C source,
we generate it using carray.sh at compile-time.
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Atish Patra <[email protected]>
Diffstat (limited to 'include/sbi_utils')
| -rw-r--r-- | include/sbi_utils/gpio/fdt_gpio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sbi_utils/gpio/fdt_gpio.h b/include/sbi_utils/gpio/fdt_gpio.h index 19e1b587..ccbf2a11 100644 --- a/include/sbi_utils/gpio/fdt_gpio.h +++ b/include/sbi_utils/gpio/fdt_gpio.h @@ -12,6 +12,8 @@ #include <sbi_utils/gpio/gpio.h> +struct fdt_phandle_args; + /** FDT based GPIO driver */ struct fdt_gpio { const struct fdt_match *match_table; |
