diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2017-09-12 23:37:18 +0300 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2017-09-18 07:59:55 +0200 |
commit | 17760376ae31e06f66b3c3b8981f5978d4c53150 (patch) | |
tree | ae01eef8eb6864ade2ee9f2057327d7eaabfe276 /drivers/soc/renesas/rcar-rst.c | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) | |
download | linux-17760376ae31e06f66b3c3b8981f5978d4c53150.tar.bz2 |
soc: renesas: rcar-rst: add R8A77970 support
Add support for R-Car V3M (R8A77970) to the R-Car RST driver -- this driver
is needed for the clock driver to work.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/soc/renesas/rcar-rst.c')
-rw-r--r-- | drivers/soc/renesas/rcar-rst.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/renesas/rcar-rst.c b/drivers/soc/renesas/rcar-rst.c index baa47014e96b..3316b028f231 100644 --- a/drivers/soc/renesas/rcar-rst.c +++ b/drivers/soc/renesas/rcar-rst.c @@ -41,6 +41,7 @@ static const struct of_device_id rcar_rst_matches[] __initconst = { /* R-Car Gen3 is handled like R-Car Gen2 */ { .compatible = "renesas,r8a7795-rst", .data = &rcar_rst_gen2 }, { .compatible = "renesas,r8a7796-rst", .data = &rcar_rst_gen2 }, + { .compatible = "renesas,r8a77970-rst", .data = &rcar_rst_gen2 }, { .compatible = "renesas,r8a77995-rst", .data = &rcar_rst_gen2 }, { /* sentinel */ } }; |