From nobody Sat Feb 7 14:34:29 2026 Received: from out-183.mta1.migadu.com (out-183.mta1.migadu.com [95.215.58.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3254A288B8 for ; Thu, 5 Feb 2026 19:46:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.183 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770320772; cv=none; b=orh25gwWMP4GRJAreTSvhXtHxjEXz3FYH4bXJkC7VEfG2EeG+JdWq59ffWgu1vOADc9WtSSDoA4iVJwC/sxubevbLc8lS7sA2Ia2gXDYG+wDfJAOdOHH1bGSNyTt3+oNaT6JjVNrFMGo3Yle71mhzMgg6rg924SPC+J3m+cqMIU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770320772; c=relaxed/simple; bh=u5OPuZMOac8rMUCqfVFVuHAGYPLRRl8Me9JB/haRe3M=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=GdNA9odwyyH1HoezA4rNzESrXuFbxKZB1P5zezXtWS4DYTYfDYY85UYzMy1vQNR+qan1lR9Ux/A1bj1HUiBg/XHWcLG0mBkh+OzhQOfTXpSaAbbFTfY555emXZ7BKgC6ekdIE/6PVEOoBw5RSWGz5z6ybqSZ6NlNlyLV1DOS/0c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=H3YWAR/S; arc=none smtp.client-ip=95.215.58.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="H3YWAR/S" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1770320768; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=IvBuOfpCo0+VIpkSQ9liw7TJLNLW+8V64cAq9/bRrgg=; b=H3YWAR/S9RPEGh/7LguThmHCT60hRqQ/k9epVaJRwWzwNo+1WC42aCwr/QOw2ldPhICFSh 09rScjUbaRIdBTzkgkd3mhueMzIYyHegtXN78H8A1hJjV3l6GvTT/PJ4nuStZtjc+T+Ens uAvx/bTRBDgXUPc+tglUvs0D3SCLfmo= From: Thorsten Blum To: Markus Mayer , Broadcom internal kernel review list , "Rafael J. Wysocki" , Daniel Lezcano , Zhang Rui , Lukasz Luba , Florian Fainelli Cc: Thorsten Blum , linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH RESEND] thermal/drivers/brcmstb_thermal: Use max to simplify brcmstb_get_temp Date: Thu, 5 Feb 2026 20:45:42 +0100 Message-ID: <20260205194542.1013198-2-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" Use max() to simplify brcmstb_get_temp() and improve its readability. Since avs_tmon_code_to_temp() returns an int, change the data type of the local variable 't' from long to int. No functional changes. Reviewed-by: Florian Fainelli Signed-off-by: Thorsten Blum --- drivers/thermal/broadcom/brcmstb_thermal.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/b= roadcom/brcmstb_thermal.c index f46f2ddc174e..a9ffa596f7c0 100644 --- a/drivers/thermal/broadcom/brcmstb_thermal.c +++ b/drivers/thermal/broadcom/brcmstb_thermal.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include @@ -154,7 +155,7 @@ static int brcmstb_get_temp(struct thermal_zone_device = *tz, int *temp) { struct brcmstb_thermal_priv *priv =3D thermal_zone_device_priv(tz); u32 val; - long t; + int t; =20 val =3D __raw_readl(priv->tmon_base + AVS_TMON_STATUS); =20 @@ -164,10 +165,7 @@ static int brcmstb_get_temp(struct thermal_zone_device= *tz, int *temp) val =3D (val & AVS_TMON_STATUS_data_msk) >> AVS_TMON_STATUS_data_shift; =20 t =3D avs_tmon_code_to_temp(priv, val); - if (t < 0) - *temp =3D 0; - else - *temp =3D t; + *temp =3D max(0, t); =20 return 0; } --=20 Thorsten Blum GPG: 1D60 735E 8AEF 3BE4 73B6 9D84 7336 78FD 8DFE EAD4