| 1 | #ifndef LIB__FDT_H__ |
| 2 | #define LIB__FDT_H__ |
| 3 | |
| 4 | #if !defined(__x86_64__) && !defined(__i386__) |
| 5 | |
| 6 | #include <stddef.h> |
| 7 | #include <stdint.h> |
| 8 | |
| 9 | int fdt_set_chosen_string(void *fdt, const char *name, const char *value); |
| 10 | int fdt_set_chosen_uint64(void *fdt, const char *name, uint64_t value); |
| 11 | int fdt_set_chosen_uint32(void *fdt, const char *name, uint32_t value); |
| 12 | |
| 13 | #endif |
| 14 | |
| 15 | #endif // LIB__FDT_H__ |
