From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-179.mta0.migadu.com (out-179.mta0.migadu.com [91.218.175.179]) (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 53C8715E5DC for ; Sat, 11 Jul 2026 13:52:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.179 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783777970; cv=none; b=qK+MbKYXMAPJASxnkzfpaEyNaxm8/97XFIOENs1Lc6FYUevH/GqMtnvHPrh+4JUXN1NNCsoO6QrkRHjS+FrH3+2XAEyoDSrNWhE1X9BymEBu62Sh/zwPgq5jwVXEMYIKm7+T90+KqGdpyrcE4k94k9WhK7pvQqGq6MMrr2kRE38= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783777970; c=relaxed/simple; bh=ECG3ecw/bwX5kLgyrZCf6pwFJfK4cLWH9pIvUatqdfo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=MHsUz5OdHxuxps3AdpdlxmZXgBkm9eOjozf/38wXfbb4QuQ/oLYPEAqGq2qOo9ESNi2HUDv5cEs3m9uBhHUv8Bdcy6omZqpVRMnH3KMymxJhDmFc3Os290068Pcq7/Ry+1ml5Ye89CZ6EO4x7jQOWQjJ+MFevA7FQqEnJsbmY/8= 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=SPTFrVri; arc=none smtp.client-ip=91.218.175.179 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="SPTFrVri" 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=1783777964; 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=SbIZZcqbuDpJs1dbeAIlFgxWcMpMo2AYAWkhSGr2bz8=; b=SPTFrVriF/OPBE0imuaYJvj/PL3GQ9MgWMPfdGv1sVZJCHRFoxt9LJHkKQ5lqSxwYNeyL8 K3XNukdpMQzqsxooyDvDI3OS6xI6ZokQPDkA3eVn2ra89/sU37Rm075NFOX1aY7u6799k0 mUcmNJUi5hzBGIFTjLsSNZjktBnhJLE= From: Zenghui Yu To: linux-kernel@vger.kernel.org, coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org Cc: tglx@kernel.org, peterz@infradead.org, suzuki.poulose@arm.com, mike.leach@arm.com, james.clark@linaro.org, leo.yan@arm.com, Zenghui Yu Subject: [PATCH] cpu/hotplug: Remove CPUHP_AP_ARM_CORESIGHT_CTI_STARTING Date: Sat, 11 Jul 2026 21:51:54 +0800 Message-ID: <20260711135154.94276-1-zenghui.yu@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: 8bit X-Migadu-Flow: FLOW_OUT The cpuhp_state CPUHP_AP_ARM_CORESIGHT_CTI_STARTING has become unused since commit 59213b4be5c1 ("coresight: cti: Remove CPU power management code"). Remove it. Signed-off-by: Zenghui Yu --- include/linux/cpuhotplug.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index 0fb3a2a62eb0..feb32949aeea 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -180,7 +180,6 @@ enum cpuhp_state { CPUHP_AP_DUMMY_TIMER_STARTING, CPUHP_AP_ARM_XEN_STARTING, CPUHP_AP_ARM_XEN_RUNSTATE_STARTING, - CPUHP_AP_ARM_CORESIGHT_CTI_STARTING, CPUHP_AP_ARM64_ISNDEP_STARTING, CPUHP_AP_SMPCFD_DYING, CPUHP_AP_HRTIMERS_DYING, -- 2.53.0