From nobody Fri Dec 19 12:45:10 2025 Received: from out-178.mta0.migadu.com (out-178.mta0.migadu.com [91.218.175.178]) (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 E62BA23BD1F for ; Sat, 6 Dec 2025 17:44:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.178 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765043096; cv=none; b=TloTqGPvWOJ0F1B6Pg7xJtqMWpE5obLXyC7TLo5lQm01KJKS2TtOO60/8LpWdLd1EuobRE2X4ZyzHFGdCuEtK48NWalT8Z8lON4rfzDfFG9z7Dr56FIwusmBzdGJPruYNXx2WZHnlzS39lqLcEBwhfheuJrxopVQQcAsPkrqU/g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765043096; c=relaxed/simple; bh=qswf3Tb+Q9pb83Y7WJ37Ch6qQmgONgcUqch58+s2XMs=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=RdOhdsgIVmdN5n6iOEv+aNdOrCznBbGDtFobBebKtuJSrzFIp1gYtI4VFf7a6PvB4HmjWXsFxP3YdOt61XcZNle8+K67rIri3y1IDDllWfRmBp+98GiYUifL2+YkkNyaeIVoa8Ooh0HMIumgKOMmJYeIH0YhbFQMH5Gd1+Tbckg= 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=mSzcXALd; arc=none smtp.client-ip=91.218.175.178 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="mSzcXALd" 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=1765043091; 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=pxZyHJEELq7EvWTolS5dAbDs7d83TO9QGKdDxI0rYC8=; b=mSzcXALdBFsgnErTPMEiPgVla8MkhvQ5ybJpfR7XM5v4ZyP5VWs0lMbJDBH5N22z1igr4m RTuX0JPrq0YQ/WYATUXmF0/5w1i+LOzuiHCy7lgTNxiDQs+GG2CcVZl6XauLZ26S4qEAeC XRGoY3HCnXWANEwtXhebEHm2pVzV/Y4= From: Thorsten Blum To: "Rafael J. Wysocki" , Daniel Lezcano , Zhang Rui , Lukasz Luba Cc: Thorsten Blum , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] thermal: core: Fix typo and indentation in comments Date: Sat, 6 Dec 2025 18:42:45 +0100 Message-ID: <20251206174245.116391-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" s/tmperature/temperature/ and adjust the indentation of the @ops parameter description to improve readability. Signed-off-by: Thorsten Blum --- drivers/thermal/thermal_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 90e7edf16a52..dc9f7416f7ff 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -500,7 +500,7 @@ void thermal_zone_set_trip_hyst(struct thermal_zone_dev= ice *tz, WRITE_ONCE(trip->hysteresis, hyst); thermal_notify_tz_trip_change(tz, trip); /* - * If the zone temperature is above or at the trip tmperature, the trip + * If the zone temperature is above or at the trip temperature, the trip * is in the trips_reached list and its threshold is equal to its low * temperature. It needs to stay in that list, but its threshold needs * to be updated and the list ordering may need to be restored. @@ -1043,7 +1043,7 @@ static void thermal_cooling_device_init_complete(stru= ct thermal_cooling_device * * @np: a pointer to a device tree node. * @type: the thermal cooling device type. * @devdata: device private data. - * @ops: standard thermal cooling devices callbacks. + * @ops: standard thermal cooling devices callbacks. * * This interface function adds a new thermal cooling device (fan/processo= r/...) * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind = itself --=20 Thorsten Blum GPG: 1D60 735E 8AEF 3BE4 73B6 9D84 7336 78FD 8DFE EAD4