From nobody Wed Apr 15 01:30:00 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A891C04A68 for ; Thu, 28 Jul 2022 10:45:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236403AbiG1Kp2 (ORCPT ); Thu, 28 Jul 2022 06:45:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40370 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236407AbiG1Kot (ORCPT ); Thu, 28 Jul 2022 06:44:49 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7982D6566A; Thu, 28 Jul 2022 03:44:17 -0700 (PDT) Date: Thu, 28 Jul 2022 10:44:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1659005055; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JWP1Jd8H8eTls6cTNI6gJ1quaY+nA6OQtt7305MD3oY=; b=P0+AFAfcT/rghOYY7AqZGDShQevvhS1sgBBLuk7ckNIYMtB/vVvk3DeaSYuWzXmTe6gw/A GOlNuHpbxOpdaqwu7p3fV9jASJDwIr/1mkYOqBYFRNkhZSq6dGmae8ciegjG2SExnxm5dp crcTa8KH8oQhHahyzhLDGINOyZUmUvPl4W+F6KCP0CbJO0Th/+MnqsF3KkUh4AzTeycJxP WbxQf+sM9R+LI1UFxMY/0OUjQvswEL3tk8qMtOvkSltL9ufspvTm5urTt78LX8bdk29uvC nOLx4L88zyCn+NswmIavaqrBkF/+ntQ5wtOQVYcCHvEaRoGteoDQ5JGXsCVtsQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1659005055; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JWP1Jd8H8eTls6cTNI6gJ1quaY+nA6OQtt7305MD3oY=; b=mT9ZwjsneeyRajTDsmNDKXo2RIpKIhi9nvwzOAaDF7N88WM9+WzC+giJ0B0cw1SGqd8x1h PcubaEG2lEbYGyBA== From: "tip-bot2 for Wolfram Sang" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: timers/core] thermal/drivers/rcar_gen3_thermal: Add r8a779f0 support Cc: Wolfram Sang , niklas.soderlund@ragnatech.se, Geert Uytterhoeven , Daniel Lezcano , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220705195520.2581-1-wsa+renesas@sang-engineering.com> References: <20220705195520.2581-1-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Message-ID: <165900505422.15455.14055094669854740799.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the timers/core branch of tip: Commit-ID: 5b2ca9bc3f1bb1a65e8a2c636047ea51aaa924b1 Gitweb: https://git.kernel.org/tip/5b2ca9bc3f1bb1a65e8a2c636047ea51a= aa924b1 Author: Wolfram Sang AuthorDate: Tue, 05 Jul 2022 21:55:20 +02:00 Committer: Daniel Lezcano CommitterDate: Sat, 16 Jul 2022 00:45:33 +02:00 thermal/drivers/rcar_gen3_thermal: Add r8a779f0 support Add support for R-Car S4. Signed-off-by: Wolfram Sang Reviewed-by: Niklas S=C3=B6derlund Reviewed-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20220705195520.2581-1-wsa+renesas@sang-engi= neering.com Signed-off-by: Daniel Lezcano --- drivers/thermal/rcar_gen3_thermal.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/thermal/rcar_gen3_thermal.c b/drivers/thermal/rcar_gen= 3_thermal.c index 43eb25b..ccdf8a2 100644 --- a/drivers/thermal/rcar_gen3_thermal.c +++ b/drivers/thermal/rcar_gen3_thermal.c @@ -399,6 +399,10 @@ static const struct of_device_id rcar_gen3_thermal_dt_= ids[] =3D { .compatible =3D "renesas,r8a779a0-thermal", .data =3D &rcar_gen3_ths_tj_1, }, + { + .compatible =3D "renesas,r8a779f0-thermal", + .data =3D &rcar_gen3_ths_tj_1, + }, {}, }; MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids);