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 8F5F82ED86F; Tue, 17 Jun 2025 15:53:17 +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=1750175597; cv=none; b=C6QH82Gy++PQ6PlR8N58Wuc6nI8d+cKwsN3j+JcAT1MkXu2yih0K2titgfU+ygn4x4jNvUt/MSkJho2SP+YZNEjefU+/yDvBrcUH6cKoRLSaKlpui1lUBVjGcDyp7m1zpco7XwyPG4GLkRv9VQovr5dcML2u/hU7MlYeukVS2L0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750175597; c=relaxed/simple; bh=PUYF5QoptKXMBlAQV5uPhgWN85gOxhacy+4qqwEVG5U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=S0fZYmjahYGLCnmqy5sPEE2KfoRmW5JPWkn5RFQ6VEQwCbZed/Gv930fybuCvMgK0bmDq6m4RPqezBm9+Y3HTUGIJybBPBCNuly4QVmbBVuRRv/Y0dy1Bq00iaiXjnkjvjhspiTG1AdUt5SI/G97Vjr9jsVjHFoXxZ5FTMPqvwA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Yj/zxwpP; 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="Yj/zxwpP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 008DDC4CEE3; Tue, 17 Jun 2025 15:53:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750175597; bh=PUYF5QoptKXMBlAQV5uPhgWN85gOxhacy+4qqwEVG5U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Yj/zxwpPZt6GfbDZawdXqensMaOghnTScXi/mYUmI2Z7pav6kyp0MnLF8VjyN8AhB r/btT5GhgrfXxZAFvxUIPzNL6lZopQa+fQ4gDTWpdVIHDhvCZ1TQl1oLVp3XwCFjGm WtqsRjhuaL2e2fZdlQtHk7kgiN0X/iYf/dpWy1Mc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Joel Stanley , Andrew Jeffery , Arnd Bergmann , Sasha Levin Subject: [PATCH 6.6 192/356] ARM: aspeed: Dont select SRAM Date: Tue, 17 Jun 2025 17:25:07 +0200 Message-ID: <20250617152345.935801918@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250617152338.212798615@linuxfoundation.org> References: <20250617152338.212798615@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: Joel Stanley [ Upstream commit e4f59f873c3ffe2a0150e11115a83e2dfb671dbf ] The ASPEED devices have SRAM, but don't require it for basic function (or any function; there's no known users of the driver). Fixes: 8c2ed9bcfbeb ("arm: Add Aspeed machine") Signed-off-by: Joel Stanley Link: https://patch.msgid.link/20250115103942.421429-1-joel@jms.id.au Signed-off-by: Andrew Jeffery Signed-off-by: Arnd Bergmann Signed-off-by: Sasha Levin --- arch/arm/mach-aspeed/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-aspeed/Kconfig b/arch/arm/mach-aspeed/Kconfig index 080019aa6fcd8..fcf287edd0e5e 100644 --- a/arch/arm/mach-aspeed/Kconfig +++ b/arch/arm/mach-aspeed/Kconfig @@ -2,7 +2,6 @@ menuconfig ARCH_ASPEED bool "Aspeed BMC architectures" depends on (CPU_LITTLE_ENDIAN && ARCH_MULTI_V5) || ARCH_MULTI_V6 || ARCH_MULTI_V7 - select SRAM select WATCHDOG select ASPEED_WATCHDOG select MFD_SYSCON -- 2.39.5