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 3DBF1243376; Wed, 25 Feb 2026 01:37:34 +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=1771983454; cv=none; b=uRsTtMXlrOwLK3Jj+eEIEPMJoDOAHUM659NiMs/MZLXQX8/mw8OyDPalHXLSnkZamTPGpf7V05UyXwMcd0LmLmhOWcgrv8m7ZQOfMkkqdm7o3mp5xaL6Vk86ZMQnAwOL8pO1YiR86aVmAQiMh3ZpNNXCQy9ko8TSIA94c4BO3aI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771983454; c=relaxed/simple; bh=4aL+qUU2vdjtI2QygyAZjuZYuW/o4QAUV9z7i5iXGb8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=lJZXHfEEfSNOfz7YWiRROJO5ZHMsnCZxBu2Op3rR+VXcKk2bDnTEEghl8HPAlvTd7HPq04eEK1h0TuJakVrIJnk3CaxrkDmhEJdsuDH9E2tFpeXpLGLKY2CYMn7GFiqbx1OGbJlkByN5CAPPIgsL0k/KySN0KaRpGqZYWlHQHOM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Ri8Y4vc8; 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="Ri8Y4vc8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B69B9C116D0; Wed, 25 Feb 2026 01:37:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1771983453; bh=4aL+qUU2vdjtI2QygyAZjuZYuW/o4QAUV9z7i5iXGb8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ri8Y4vc8lSR/abDJvbd41ZceSeM1rILnZmSM0BkFnIVsyrV07aC9U+QGsvOIWU1fy E/I0Tdliti19xiRS5LwZPBMJ1L6kC2zK6OABVdCBOE4A0Mcst7WlnycuUWUmWIerA+ AK7CyLtk7539T6IzSZ4iRl7Ye+++4LEyNC9z6lZQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , Abhishek Pandit-Subedi , Benson Leung , Sasha Levin Subject: [PATCH 6.19 568/781] usb: typec: ucsi: drop an unused Kconfig symbol Date: Tue, 24 Feb 2026 17:21:17 -0800 Message-ID: <20260225012413.735148936@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260225012359.695468795@linuxfoundation.org> References: <20260225012359.695468795@linuxfoundation.org> User-Agent: quilt/0.69 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.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit c5177144b561dd4037a6a225d444b3604afbfbf2 ] EXTCON_TCSS_CROS_EC isn't used anywhere else in the kernel tree, so drop it from this Kconfig file. (unless it should be EXTCON_USBC_CROS_EC ?) Fixes: f1a2241778d9 ("usb: typec: ucsi: Implement ChromeOS UCSI driver") Signed-off-by: Randy Dunlap Reviewed-by: Abhishek Pandit-Subedi Reviewed-by: Benson Leung Link: https://patch.msgid.link/20251228190604.2484082-1-rdunlap@infradead.org Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/usb/typec/ucsi/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/usb/typec/ucsi/Kconfig b/drivers/usb/typec/ucsi/Kconfig index b812be4d0e674..87dd992a4b9e9 100644 --- a/drivers/usb/typec/ucsi/Kconfig +++ b/drivers/usb/typec/ucsi/Kconfig @@ -73,7 +73,6 @@ config CROS_EC_UCSI tristate "UCSI Driver for ChromeOS EC" depends on MFD_CROS_EC_DEV depends on CROS_USBPD_NOTIFY - depends on !EXTCON_TCSS_CROS_EC default MFD_CROS_EC_DEV help This driver enables UCSI support for a ChromeOS EC. The EC is -- 2.51.0