diff options
author | Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | 2015-05-18 05:33:47 -0400 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2015-05-21 09:05:08 -0400 |
commit | 9d699bf4dbe29d8f26769ea81dec4a8c91edcd5a (patch) | |
tree | 67fad990ed06223c20e09bb15047bc181b123e22 | |
parent | 33f434d283a27116fb358ae5bc3b42967c12f85a (diff) |
phy: rcar-gen2: Add support for R-Car E2
This patch adds a compatible string to support for R-Car E2.
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r-- | Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt | 1 | ||||
-rw-r--r-- | drivers/phy/phy-rcar-gen2.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt b/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt index 00fc52a034b7..d564ba4f1cf6 100644 --- a/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt +++ b/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt | |||
@@ -6,6 +6,7 @@ This file provides information on what the device node for the R-Car generation | |||
6 | Required properties: | 6 | Required properties: |
7 | - compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC. | 7 | - compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC. |
8 | "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC. | 8 | "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC. |
9 | "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC. | ||
9 | - reg: offset and length of the register block. | 10 | - reg: offset and length of the register block. |
10 | - #address-cells: number of address cells for the USB channel subnodes, must | 11 | - #address-cells: number of address cells for the USB channel subnodes, must |
11 | be <1>. | 12 | be <1>. |
diff --git a/drivers/phy/phy-rcar-gen2.c b/drivers/phy/phy-rcar-gen2.c index f47bfd8a5368..0050301dce7a 100644 --- a/drivers/phy/phy-rcar-gen2.c +++ b/drivers/phy/phy-rcar-gen2.c | |||
@@ -195,6 +195,7 @@ static struct phy_ops rcar_gen2_phy_ops = { | |||
195 | static const struct of_device_id rcar_gen2_phy_match_table[] = { | 195 | static const struct of_device_id rcar_gen2_phy_match_table[] = { |
196 | { .compatible = "renesas,usb-phy-r8a7790" }, | 196 | { .compatible = "renesas,usb-phy-r8a7790" }, |
197 | { .compatible = "renesas,usb-phy-r8a7791" }, | 197 | { .compatible = "renesas,usb-phy-r8a7791" }, |
198 | { .compatible = "renesas,usb-phy-r8a7794" }, | ||
198 | { } | 199 | { } |
199 | }; | 200 | }; |
200 | MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table); | 201 | MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table); |