Skip to content

Commit af6e613

Browse files
shimodayFelipe Balbi
authored andcommitted
usb: renesas_usbhs: 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>" in patch 2 Signed-off-by: Felipe Balbi <balbi@ti.com>
1 parent e0213bc commit af6e613

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Documentation/devicetree/bindings/usb/renesas_usbhs.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Required properties:
44
- compatible: Must contain one of the following:
55
- "renesas,usbhs-r8a7790"
66
- "renesas,usbhs-r8a7791"
7+
- "renesas,usbhs-r8a7794"
78
- reg: Base address and length of the register for the USBHS
89
- interrupts: Interrupt specifier for the USBHS
910
- clocks: A list of phandle + clock specifier pairs

drivers/usb/renesas_usbhs/common.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,10 @@ static const struct of_device_id usbhs_of_match[] = {
472472
.compatible = "renesas,usbhs-r8a7791",
473473
.data = (void *)USBHS_TYPE_RCAR_GEN2,
474474
},
475+
{
476+
.compatible = "renesas,usbhs-r8a7794",
477+
.data = (void *)USBHS_TYPE_RCAR_GEN2,
478+
},
475479
{ },
476480
};
477481
MODULE_DEVICE_TABLE(of, usbhs_of_match);

0 commit comments

Comments
 (0)