diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-18 10:46:50 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-18 10:46:50 -0700 | 
| commit | ff9129b06cfb05cb5920f1151c75506afe1586fe (patch) | |
| tree | bf527a9d8db078b37da863e5959cfb100622aadb | |
| parent | 3c6a279ffccd0c414ecd1d5eb4670ed70072c526 (diff) | |
| parent | 3132f623386e9ac87077bd839e726f7b940fbc94 (diff) | |
| download | olio-linux-3.10-ff9129b06cfb05cb5920f1151c75506afe1586fe.tar.xz olio-linux-3.10-ff9129b06cfb05cb5920f1151c75506afe1586fe.zip  | |
Merge tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux
Pull device tree fixes from Grant Likely:
 "Device tree bug fixes and documentation updates for v3.10
  Nothing earth shattering here.  A build failure fix, and fix for
  releasing nodes and some documenation updates."
* tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux:
  Documentation/devicetree: make semantic of initrd-end more explicit
  of/base: release the node correctly in of_parse_phandle_with_args()
  of/documentation: move video device bindings to a common place
  <linux/of_platform.h>: fix compilation warnings with DT disabled
| -rw-r--r-- | Documentation/devicetree/bindings/video/exynos_hdmi.txt (renamed from Documentation/devicetree/bindings/drm/exynos/hdmi.txt) | 0 | ||||
| -rw-r--r-- | Documentation/devicetree/bindings/video/exynos_hdmiddc.txt (renamed from Documentation/devicetree/bindings/drm/exynos/hdmiddc.txt) | 0 | ||||
| -rw-r--r-- | Documentation/devicetree/bindings/video/exynos_hdmiphy.txt (renamed from Documentation/devicetree/bindings/drm/exynos/hdmiphy.txt) | 0 | ||||
| -rw-r--r-- | Documentation/devicetree/bindings/video/exynos_mixer.txt (renamed from Documentation/devicetree/bindings/drm/exynos/mixer.txt) | 0 | ||||
| -rw-r--r-- | Documentation/devicetree/usage-model.txt | 8 | ||||
| -rw-r--r-- | drivers/of/base.c | 4 | ||||
| -rw-r--r-- | include/linux/of_platform.h | 5 | 
7 files changed, 10 insertions, 7 deletions
diff --git a/Documentation/devicetree/bindings/drm/exynos/hdmi.txt b/Documentation/devicetree/bindings/video/exynos_hdmi.txt index 589edee3739..589edee3739 100644 --- a/Documentation/devicetree/bindings/drm/exynos/hdmi.txt +++ b/Documentation/devicetree/bindings/video/exynos_hdmi.txt diff --git a/Documentation/devicetree/bindings/drm/exynos/hdmiddc.txt b/Documentation/devicetree/bindings/video/exynos_hdmiddc.txt index fa166d94580..fa166d94580 100644 --- a/Documentation/devicetree/bindings/drm/exynos/hdmiddc.txt +++ b/Documentation/devicetree/bindings/video/exynos_hdmiddc.txt diff --git a/Documentation/devicetree/bindings/drm/exynos/hdmiphy.txt b/Documentation/devicetree/bindings/video/exynos_hdmiphy.txt index 858f4f9b902..858f4f9b902 100644 --- a/Documentation/devicetree/bindings/drm/exynos/hdmiphy.txt +++ b/Documentation/devicetree/bindings/video/exynos_hdmiphy.txt diff --git a/Documentation/devicetree/bindings/drm/exynos/mixer.txt b/Documentation/devicetree/bindings/video/exynos_mixer.txt index 9b2ea034356..9b2ea034356 100644 --- a/Documentation/devicetree/bindings/drm/exynos/mixer.txt +++ b/Documentation/devicetree/bindings/video/exynos_mixer.txt diff --git a/Documentation/devicetree/usage-model.txt b/Documentation/devicetree/usage-model.txt index ef9d06c9f8f..0efedaad516 100644 --- a/Documentation/devicetree/usage-model.txt +++ b/Documentation/devicetree/usage-model.txt @@ -191,9 +191,11 @@ Linux it will look something like this:  	};  The bootargs property contains the kernel arguments, and the initrd-* -properties define the address and size of an initrd blob.  The -chosen node may also optionally contain an arbitrary number of -additional properties for platform-specific configuration data. +properties define the address and size of an initrd blob.  Note that +initrd-end is the first address after the initrd image, so this doesn't +match the usual semantic of struct resource.  The chosen node may also +optionally contain an arbitrary number of additional properties for +platform-specific configuration data.  During early boot, the architecture setup code calls of_scan_flat_dt()  several times with different helper callbacks to parse device tree diff --git a/drivers/of/base.c b/drivers/of/base.c index c76d16c972c..f53b992f060 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -1208,11 +1208,11 @@ static int __of_parse_phandle_with_args(const struct device_node *np,  				out_args->args_count = count;  				for (i = 0; i < count; i++)  					out_args->args[i] = be32_to_cpup(list++); +			} else { +				of_node_put(node);  			}  			/* Found it! return success */ -			if (node) -				of_node_put(node);  			return 0;  		} diff --git a/include/linux/of_platform.h b/include/linux/of_platform.h index 3863a4dbdf1..2a93b64a386 100644 --- a/include/linux/of_platform.h +++ b/include/linux/of_platform.h @@ -11,9 +11,10 @@   *   */ -#ifdef CONFIG_OF_DEVICE  #include <linux/device.h>  #include <linux/mod_devicetable.h> + +#ifdef CONFIG_OF_DEVICE  #include <linux/pm.h>  #include <linux/of_device.h>  #include <linux/platform_device.h> @@ -100,7 +101,7 @@ extern int of_platform_populate(struct device_node *root,  #if !defined(CONFIG_OF_ADDRESS)  struct of_dev_auxdata; -struct device; +struct device_node;  static inline int of_platform_populate(struct device_node *root,  					const struct of_device_id *matches,  					const struct of_dev_auxdata *lookup,  |