Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: rcar-gen3-usb2: Add a compatible string for r8a7796

This driver can support for r8a7796 SoC. So, this patch adds it.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

authored by

Yoshihiro Shimoda and committed by
Kishon Vijay Abraham I
800dcc30 8cf1ffe9

+3
+2
Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
··· 6 6 Required properties: 7 7 - compatible: "renesas,usb2-phy-r8a7795" if the device is a part of an R8A7795 8 8 SoC. 9 + "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796 10 + SoC. 9 11 "renesas,rcar-gen3-usb2-phy" for a generic R-Car Gen3 compatible device. 10 12 11 13 When compatible with the generic version, nodes must list the
+1
drivers/phy/phy-rcar-gen3-usb2.c
··· 280 280 281 281 static const struct of_device_id rcar_gen3_phy_usb2_match_table[] = { 282 282 { .compatible = "renesas,usb2-phy-r8a7795" }, 283 + { .compatible = "renesas,usb2-phy-r8a7796" }, 283 284 { .compatible = "renesas,rcar-gen3-usb2-phy" }, 284 285 { } 285 286 };