summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/xhci-plat.c
diff options
context:
space:
mode:
authorSimon Horman2016-02-18 16:55:49 +0100
committerGreg Kroah-Hartman2016-03-04 04:44:06 +0100
commitf1bbdc3b0402061ac52fc1b34cc018b0c227f4a4 (patch)
tree2830295c1de671a356c2ee3c9eb48991a57c78e5 /drivers/usb/host/xhci-plat.c
parentMerge tag 'usb-ci-v4.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/... (diff)
downloadkernel-qcow2-linux-f1bbdc3b0402061ac52fc1b34cc018b0c227f4a4.tar.gz
kernel-qcow2-linux-f1bbdc3b0402061ac52fc1b34cc018b0c227f4a4.tar.xz
kernel-qcow2-linux-f1bbdc3b0402061ac52fc1b34cc018b0c227f4a4.zip
usb: host: xhci-plat: add R-Car Gen2 and Gen3 fallback compatibility strings
Add fallback compatibility strings for R-Car Gen2 and Gen3. This is in keeping with the fallback scheme being adopted wherever appropriate for drivers for Renesas SoCs. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/xhci-plat.c')
-rw-r--r--drivers/usb/host/xhci-plat.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index d39d6bf1d090..3aede6eb9637 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -110,6 +110,11 @@ static const struct of_device_id usb_xhci_of_match[] = {
.compatible = "renesas,xhci-r8a7795",
.data = &xhci_plat_renesas_rcar_gen3,
}, {
+ .compatible = "renesas,rcar-gen2-xhci",
+ .data = &xhci_plat_renesas_rcar_gen2,
+ }, {
+ .compatible = "renesas,rcar-gen3-xhci",
+ .data = &xhci_plat_renesas_rcar_gen3,
},
};
MODULE_DEVICE_TABLE(of, usb_xhci_of_match);