diff options
Diffstat (limited to 'dtc.h')
-rw-r--r-- | dtc.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -135,6 +135,10 @@ struct label { struct label *next; }; +struct bus_type { + const char *name; +}; + struct property { bool deleted; char *name; @@ -161,6 +165,7 @@ struct node { int addr_cells, size_cells; struct label *labels; + const struct bus_type *bus; }; #define for_each_label_withdel(l0, l) \ |