aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/ata/sata_rcar.txt1
-rw-r--r--drivers/ata/sata_rcar.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/ata/sata_rcar.txt b/Documentation/devicetree/bindings/ata/sata_rcar.txt
index 2493a5a31655..0764f9ab63dc 100644
--- a/Documentation/devicetree/bindings/ata/sata_rcar.txt
+++ b/Documentation/devicetree/bindings/ata/sata_rcar.txt
@@ -8,6 +8,7 @@ Required properties:
8 - "renesas,sata-r8a7790" for R-Car H2 other than ES1 8 - "renesas,sata-r8a7790" for R-Car H2 other than ES1
9 - "renesas,sata-r8a7791" for R-Car M2-W 9 - "renesas,sata-r8a7791" for R-Car M2-W
10 - "renesas,sata-r8a7793" for R-Car M2-N 10 - "renesas,sata-r8a7793" for R-Car M2-N
11 - "renesas,sata-r8a7795" for R-Car H3
11- reg : address and length of the SATA registers; 12- reg : address and length of the SATA registers;
12- interrupts : must consist of one interrupt specifier. 13- interrupts : must consist of one interrupt specifier.
13- clocks : must contain a reference to the functional clock. 14- clocks : must contain a reference to the functional clock.
diff --git a/drivers/ata/sata_rcar.c b/drivers/ata/sata_rcar.c
index 8804127b108c..2b20b31f317d 100644
--- a/drivers/ata/sata_rcar.c
+++ b/drivers/ata/sata_rcar.c
@@ -854,6 +854,10 @@ static struct of_device_id sata_rcar_match[] = {
854 .compatible = "renesas,sata-r8a7793", 854 .compatible = "renesas,sata-r8a7793",
855 .data = (void *)RCAR_GEN2_SATA 855 .data = (void *)RCAR_GEN2_SATA
856 }, 856 },
857 {
858 .compatible = "renesas,sata-r8a7795",
859 .data = (void *)RCAR_GEN2_SATA
860 },
857 { }, 861 { },
858}; 862};
859MODULE_DEVICE_TABLE(of, sata_rcar_match); 863MODULE_DEVICE_TABLE(of, sata_rcar_match);