From: Josh Cartwright <joshc@codeaurora.org>
Date: Thu, 1 May 2014 21:40:26 +0000 (-0500)
Subject: spmi: of: fixup generic SPMI devicetree binding example
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4a2883ec794dee96c1702ca847a48bfe5c3ab1f0;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

spmi: of: fixup generic SPMI devicetree binding example

The generic SPMI example was missing an equal sign in the assignment
of the #size-cells property.

Signed-off-by: Josh Cartwright <joshc@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---

diff --git a/Documentation/devicetree/bindings/spmi/spmi.txt b/Documentation/devicetree/bindings/spmi/spmi.txt
index 462a42fb3a1e..4bb10d161a27 100644
--- a/Documentation/devicetree/bindings/spmi/spmi.txt
+++ b/Documentation/devicetree/bindings/spmi/spmi.txt
@@ -26,7 +26,7 @@ Each child node must have one and only one 'reg' entry of type SPMI_USID.
 		reg = <...>;
 
 		#address-cells = <2>;
-		#size-cells <0>;
+		#size-cells = <0>;
 
 		child@0 {
 			compatible = "...";