From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 409521C8618; Wed, 19 Mar 2025 14:40:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742395200; cv=none; b=UvJ0Da7UfRZaahM0tXD0XJ+D3o9Wfw8uWy/ufcTfGELU3jboNoV+eWBuIt+zZZ1QOgTVVENkAHhmEva/ayLaIls1vHFXAmIFrgssgfLI/2Ng9mDTB69MvDhGCVVf8vbstpyN6+RGFnU5cLEJQRMFiYbH0unYvFpSZy+f4hYKtH0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742395200; c=relaxed/simple; bh=h4HMfQq9x4TxRVTY65R/73bSsjgDSH0V4Puqefk0wW4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pHsGNwtfPi1Fl25wSi700zoZ9kjOUNIqORCJ2SuxupNN4BVw/1ErtDynXUIYISXzKlPEuIvc9NC/iaVyzudZ4E87rLskEf6PmdJEFDwECQNWVsb37WNu2Ed+KgyOBU0mXlf9loANKkazROnsXbidAuGqehMlY6EPAVNtxwDrXZw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Wx50urYi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Wx50urYi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0BB19C4CEE8; Wed, 19 Mar 2025 14:40:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1742395200; bh=h4HMfQq9x4TxRVTY65R/73bSsjgDSH0V4Puqefk0wW4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Wx50urYiLDlFhNrKo+0pFT2Pb1cp2jLd1KLBqpGfjUtdqbqH0GugJCtNn5oqBJ7dW ArZVwnOcIpuxwZM1Roes96eJVKIVqasLRBuVsConFdDk7vi2MiJFIYQ3cjoR9pxYAa GKQYxP4MiT9bWcRQjoWlFjD7ajJX1YLqEMhE666E= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Daniel Lezcano , Viresh Kumar , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.6 062/166] thermal/cpufreq_cooling: Remove structure member documentation Date: Wed, 19 Mar 2025 07:30:33 -0700 Message-ID: <20250319143021.687612554@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250319143019.983527953@linuxfoundation.org> References: <20250319143019.983527953@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Daniel Lezcano [ Upstream commit a6768c4f92e152265590371975d44c071a5279c7 ] The structure member documentation refers to a member which does not exist any more. Remove it. Link: https://lore.kernel.org/all/202501220046.h3PMBCti-lkp@intel.com/ Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202501220046.h3PMBCti-lkp@intel.com/ Signed-off-by: Daniel Lezcano Acked-by: Viresh Kumar Link: https://patch.msgid.link/20250211084712.2746705-1-daniel.lezcano@linaro.org [ rjw: Minor changelog edits ] Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/thermal/cpufreq_cooling.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/thermal/cpufreq_cooling.c b/drivers/thermal/cpufreq_cooling.c index e2cc7bd308620..874b4838d2c92 100644 --- a/drivers/thermal/cpufreq_cooling.c +++ b/drivers/thermal/cpufreq_cooling.c @@ -57,8 +57,6 @@ struct time_in_idle { * @max_level: maximum cooling level. One less than total number of valid * cpufreq frequencies. * @em: Reference on the Energy Model of the device - * @cdev: thermal_cooling_device pointer to keep track of the - * registered cooling device. * @policy: cpufreq policy. * @cooling_ops: cpufreq callbacks to thermal cooling device ops * @idle_time: idle time stats -- 2.39.5