Where did you find :

typedef int16_t carrier_t;
 ...
 struct dt_node_t {
struct dt_node_t *child[10];
carrier_t carrier;
 };

In dt.h I only see:

 struct dt_node_t {
    struct dt_node_t *child[10];
    carrier_t carrier;
 };


Reply to this email directly or view it on GitHub.