diff options
author | Yoshihiro Kaneko <ykaneko0929@gmail.com> | 2018-12-17 23:50:21 +0900 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2019-01-02 04:47:22 -0800 |
commit | e36e13003efd8b0160d49138385b0cec570900aa (patch) | |
tree | 6b86ffad7caa925ea70bdef178885abd5acb8393 | |
parent | 6471a52deeea8bba8163a1f8c7aa309d4e287eb1 (diff) | |
download | linux-e36e13003efd8b0160d49138385b0cec570900aa.tar.bz2 |
thermal: rcar_thermal: add R8A77990 support
Add support for R-Car E3 (R8A77990) thermal support.
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
-rw-r--r-- | drivers/thermal/rcar_thermal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 335cfcbce245..97462e9b40d8 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -121,6 +121,10 @@ static const struct of_device_id rcar_thermal_dt_ids[] = { .data = &rcar_gen3_thermal, }, { + .compatible = "renesas,thermal-r8a77990", + .data = &rcar_gen3_thermal, + }, + { .compatible = "renesas,thermal-r8a77995", .data = &rcar_gen3_thermal, }, |