Merge tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 10 Sep 2013 20:53:52 +0000 (13:53 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 10 Sep 2013 20:53:52 +0000 (13:53 -0700)
Pull device tree core updates from Grant Likely:
 "Generally minor changes.  A bunch of bug fixes, particularly for
  initialization and some refactoring.  Most notable change if feeding
  the entire flattened tree into the random pool at boot.  May not be
  significant, but shouldn't hurt either"

Tim Bird questions whether the boot time cost of the random feeding may
be noticeable.  And "add_device_randomness()" is definitely not some
speed deamon of a function.

* tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux:
  of/platform: add error reporting to of_amba_device_create()
  irq/of: Fix comment typo for irq_of_parse_and_map
  of: Feed entire flattened device tree into the random pool
  of/fdt: Clean up casting in unflattening path
  of/fdt: Remove duplicate memory clearing on FDT unflattening
  gpio: implement gpio-ranges binding document fix
  of: call __of_parse_phandle_with_args from of_parse_phandle
  of: introduce of_parse_phandle_with_fixed_args
  of: move of_parse_phandle()
  of: move documentation of of_parse_phandle_with_args
  of: Fix missing memory initialization on FDT unflattening
  of: consolidate definition of early_init_dt_alloc_memory_arch()
  of: Make of_get_phy_mode() return int i.s.o. const int
  include: dt-binding: input: create a DT header defining key codes.
  of/platform: Staticize of_platform_device_create_pdata()
  of: Specify initrd location using 64-bit
  dt: Typo fix
  OF: make of_property_for_each_{u32|string}() use parameters if OF is not enabled

1  2 
arch/arm/mm/init.c
arch/arm64/kernel/setup.c
arch/powerpc/kernel/prom.c
drivers/gpio/gpiolib-of.c
drivers/of/base.c
drivers/of/fdt.c
drivers/of/platform.c
include/linux/of.h
include/linux/of_fdt.h

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 3a45c4f593ad68258129f22a8a6c5e84b4611cda,87d08306fef4b4e3fb0826251d4fda74793008e9..f95aee391e30fcb98eeec0f6569c0b4bc9b8ba31
@@@ -338,14 -334,7 +335,9 @@@ const __be32 *of_prop_next_u32(struct p
   *         printk("String value: %s\n", s);
   */
  const char *of_prop_next_string(struct property *prop, const char *cur);
- #define of_property_for_each_string(np, propname, prop, s)    \
-       for (prop = of_find_property(np, propname, NULL),       \
-               s = of_prop_next_string(prop, NULL);            \
-               s;                                              \
-               s = of_prop_next_string(prop, s))
  
 +int of_device_is_stdout_path(struct device_node *dn);
 +
  #else /* CONFIG_OF */
  
  static inline const char* of_node_full_name(struct device_node *np)
@@@ -514,17 -504,20 +513,25 @@@ static inline int of_machine_is_compati
        return 0;
  }
  
 +static inline int of_device_is_stdout_path(struct device_node *dn)
 +{
 +      return 0;
 +}
 +
+ static inline const __be32 *of_prop_next_u32(struct property *prop,
+               const __be32 *cur, u32 *pu)
+ {
+       return NULL;
+ }
+ static inline const char *of_prop_next_string(struct property *prop,
+               const char *cur)
+ {
+       return NULL;
+ }
  #define of_match_ptr(_ptr)    NULL
  #define of_match_node(_matches, _node)        NULL
- #define of_property_for_each_u32(np, propname, prop, p, u) \
-       while (0)
- #define of_property_for_each_string(np, propname, prop, s) \
-       while (0)
  #endif /* CONFIG_OF */
  
  #ifndef of_node_to_nid
Simple merge