Lines Matching refs:nodeoffset
87 void check_property(void *fdt, int nodeoffset, const char *name,
89 #define check_property_cell(fdt, nodeoffset, name, val) \ argument
92 check_property(fdt, nodeoffset, name, sizeof(x), &x); \
96 const void *check_getprop(void *fdt, int nodeoffset, const char *name,
98 #define check_getprop_cell(fdt, nodeoffset, name, val) \ argument
101 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
103 #define check_getprop_64(fdt, nodeoffset, name, val) \ argument
106 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
108 #define check_getprop_string(fdt, nodeoffset, name, s) \ argument
109 check_getprop((fdt), (nodeoffset), (name), strlen(s)+1, (s))
120 const void *check_getprop_addrrange(void *fdt, int parent, int nodeoffset,