From: Matthias Brugger Date: Thu, 5 Sep 2019 08:48:49 +0000 (+0200) Subject: dm: Fix default address cells return value X-Git-Tag: v2020.10~551^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a3f15e7181cf5a9667ff410260397f0e51c9020;p=platform%2Fkernel%2Fu-boot.git dm: Fix default address cells return value Default address cells value on the livetree access function returns the wrong value. Fix this so that the value returned corresponds to the device tree specification. Signed-off-by: Matthias Brugger --- diff --git a/include/dm/of.h b/include/dm/of.h index 461e25a..6bef73b 100644 --- a/include/dm/of.h +++ b/include/dm/of.h @@ -111,7 +111,7 @@ static inline const char *of_node_full_name(const struct device_node *np) /* Default #address and #size cells */ #if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT) -#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1 +#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2 #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 #endif