]> Git Repo - linux.git/blobdiff - scripts/dtc/dtc.h
Merge tag 'linux-kselftest-next-5.12-rc1' of git://git.kernel.org/pub/scm/linux/kerne...
[linux.git] / scripts / dtc / dtc.h
index a08f4159cd0366563832936ca098a453c30b057f..d3e82fb8e3db49d2a44d54b20feb6593efb0b51d 100644 (file)
@@ -105,13 +105,13 @@ extern const char *markername(enum markertype markertype);
 
 struct  marker {
        enum markertype type;
-       int offset;
+       unsigned int offset;
        char *ref;
        struct marker *next;
 };
 
 struct data {
-       int len;
+       unsigned int len;
        char *val;
        struct marker *markers;
 };
@@ -129,7 +129,7 @@ size_t type_marker_length(struct marker *m);
 
 void data_free(struct data d);
 
-struct data data_grow_for(struct data d, int xlen);
+struct data data_grow_for(struct data d, unsigned int xlen);
 
 struct data data_copy_mem(const char *mem, int len);
 struct data data_copy_escape_string(const char *s, int len);
@@ -253,7 +253,7 @@ void append_to_property(struct node *node,
 const char *get_unitname(struct node *node);
 struct property *get_property(struct node *node, const char *propname);
 cell_t propval_cell(struct property *prop);
-cell_t propval_cell_n(struct property *prop, int n);
+cell_t propval_cell_n(struct property *prop, unsigned int n);
 struct property *get_property_by_label(struct node *tree, const char *label,
                                       struct node **node);
 struct marker *get_marker_label(struct node *tree, const char *label,
This page took 0.032028 seconds and 4 git commands to generate.