Lines Matching refs:nodeoffset
85 void check_property(void *fdt, int nodeoffset, const char *name,
87 #define check_property_cell(fdt, nodeoffset, name, val) \ argument
90 check_property(fdt, nodeoffset, name, sizeof(x), &x); \
94 const void *check_getprop(void *fdt, int nodeoffset, const char *name,
96 #define check_getprop_cell(fdt, nodeoffset, name, val) \ argument
99 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
101 #define check_getprop_64(fdt, nodeoffset, name, val) \ argument
104 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
106 #define check_getprop_string(fdt, nodeoffset, name, s) \ argument
107 check_getprop((fdt), (nodeoffset), (name), strlen(s)+1, (s))
118 const void *check_getprop_addrrange(void *fdt, int parent, int nodeoffset,