From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=none Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id D1153BD; Tue, 28 Nov 2023 13:43:04 -0800 (PST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id F198C1FB; Tue, 28 Nov 2023 13:43:51 -0800 (PST) Received: from [10.57.2.117] (unknown [10.57.2.117]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 8DC6F3F73F; Tue, 28 Nov 2023 13:43:03 -0800 (PST) Message-ID: <23b21239-4268-43e2-acc3-4ebc454944e7@arm.com> Date: Tue, 28 Nov 2023 21:44:04 +0000 Precedence: bulk X-Mailing-List: linux-pm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 1/2] thermal: trip: Drop a redundant check from thermal_zone_set_trip() Content-Language: en-US To: "Rafael J. Wysocki" Cc: LKML , Linux PM , Daniel Lezcano , Srinivas Pandruvada , Zhang Rui References: <6010559.lOV4Wx5bFT@kreacher> <4544904.LvFx2qVVIh@kreacher> From: Lukasz Luba In-Reply-To: <4544904.LvFx2qVVIh@kreacher> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 11/28/23 13:56, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > After recent changes in the thermal framework, a trip points array is > required for registering a thermal zone that is not tripless, so the > tz->trips pointer in thermal_zone_set_trip() is never NULL and the > check involving it is redundant. Drop that check. > > No functional impact. > > Signed-off-by: Rafael J. Wysocki > --- > > New patch in v2. > > --- > drivers/thermal/thermal_trip.c | 3 --- > 1 file changed, 3 deletions(-) > > Index: linux-pm/drivers/thermal/thermal_trip.c > =================================================================== > --- linux-pm.orig/drivers/thermal/thermal_trip.c > +++ linux-pm/drivers/thermal/thermal_trip.c > @@ -153,9 +153,6 @@ int thermal_zone_set_trip(struct thermal > struct thermal_trip t; > int ret; > > - if (!tz->ops->set_trip_temp && !tz->ops->set_trip_hyst && !tz->trips) > - return -EINVAL; > - > ret = __thermal_zone_get_trip(tz, trip_id, &t); > if (ret) > return ret; > > > LGTM Reviewed-by: Lukasz Luba