]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
phy: rcar-gen2: Add support for R-Car E2
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Mon, 18 May 2015 09:33:47 +0000 (18:33 +0900)
committerKishon Vijay Abraham I <kishon@ti.com>
Thu, 21 May 2015 13:05:08 +0000 (18:35 +0530)
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>
Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
drivers/phy/phy-rcar-gen2.c

index 00fc52a034b771318e42566a545e1f28cec960b3..d564ba4f1cf680643522732cfef906428feb6045 100644 (file)
@@ -6,6 +6,7 @@ This file provides information on what the device node for the R-Car generation
 Required properties:
 - compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC.
              "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC.
+             "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC.
 - reg: offset and length of the register block.
 - #address-cells: number of address cells for the USB channel subnodes, must
                  be <1>.
index f47bfd8a5368e909d2989cb9a35555807c279211..0050301dce7a658f83b4fb5a89fc9c8fec910a70 100644 (file)
@@ -195,6 +195,7 @@ static struct phy_ops rcar_gen2_phy_ops = {
 static const struct of_device_id rcar_gen2_phy_match_table[] = {
        { .compatible = "renesas,usb-phy-r8a7790" },
        { .compatible = "renesas,usb-phy-r8a7791" },
+       { .compatible = "renesas,usb-phy-r8a7794" },
        { }
 };
 MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table);