From: Sergei Shtylyov Date: Thu, 4 Oct 2018 21:03:13 +0000 (+0300) Subject: thermal: rcar_thermal: add R8A77970 support X-Git-Tag: v5.15~7731^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92ca366e9b835ada0bfe3c663da91ae44d7e8184;p=platform%2Fkernel%2Flinux-starfive.git thermal: rcar_thermal: add R8A77970 support Add the R-Car V3M (R8A77970) SoC support to the R-Car gen2 thermal driver. The hardware is the same as in the R-Car D3 (R8A77995) plus the CIVM status register (we don't use). Signed-off-by: Sergei Shtylyov Reviewed-by: Geert Uytterhoeven Reviewed-by: Simon Horman Signed-off-by: Eduardo Valentin --- diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 39366cf..98f9513 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -125,6 +125,10 @@ static const struct of_device_id rcar_thermal_dt_ids[] = { .data = &rcar_gen2_thermal, }, { + .compatible = "renesas,thermal-r8a77970", + .data = &rcar_gen3_thermal, + }, + { .compatible = "renesas,thermal-r8a77995", .data = &rcar_gen3_thermal, },