From patchwork Wed Feb 21 14:01:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13565592 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 4FE0F78B7C; Wed, 21 Feb 2024 14:01:51 +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=1708524111; cv=none; b=X8uUSWVEgWmSkkqQgk/OAEp00NS0MhhpM+4SVsJ7enFAEYfUcsHOHx6E/J2aguyzSKoG0JjnH2Pf3C3j9z6gQurp0PCO/VlmbdlhUrJGLVGgLJDiYhPZxJ9rU+7yeEpVRekUQuKQZzhBrkxeXOMYQ3Rquf/ItApobky76sJntQc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708524111; c=relaxed/simple; bh=GE0697UuXm6vFYHofIySgfsQscukTkUkSRnVzRFwygs=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=W6FzaCzlaBcOJhQnIAV4KlGQZin99q1rvSh9JdK9OoWruVHZkz/htIuvc9YHyI6dYxkLIERpDJNRbvTPnTc6iGYgISHzQbDtpR9+vmNnzhVZuVQC/fIbrsQivGpoLfhYaYHbK47xHUoOOkPSAmF3BhKbOCz1u76WPUEyZ3fsHRg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=TJOzAspe; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="TJOzAspe" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4C553C433C7; Wed, 21 Feb 2024 14:01:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1708524110; bh=GE0697UuXm6vFYHofIySgfsQscukTkUkSRnVzRFwygs=; h=From:To:Cc:Subject:Date:From; b=TJOzAspeUcgIe8ZxNoxmbLXrZhK6627MUdEJdgslgSQaQLchr61Kzb7cTsgGIgR6p tnnpaH0Dls1fpM46uBsDhWshIU4ZsN9pdlY6pUvoiErhjeC7rAzmC3LSrJwE91oMFa iyZjci6nmLvS3reTDxpN4i6LShBokiVZp8UAatVIgBxopJHyUrcsQGTIF4mbC2aFmE NefAW5gb3kJm3k5pcz1+5yBlcteCfsWexnB0AmbbtA+RnnHexux8wJM6IMt06NIgSD vr14cdinXxsUPVQ0kJvu7/Ulni73uaz+008yBCfw/3VWjxvaV7ctQY6OizH/DV1GmQ AjoX8oe+hyKkA== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Ivan Kokshaysky , Matt Turner , Richard Henderson , linux-alpha@vger.kernel.org Subject: [PATCH v2 1/2] alpha: merge two entries for CONFIG_ALPHA_EV4 Date: Wed, 21 Feb 2024 23:01:44 +0900 Message-Id: <20240221140145.2658672-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 There are two entries for CONFIG_ALPHA_EV4, on line 337 and line 368. Merge them together. Signed-off-by: Masahiro Yamada --- (no changes since v1) arch/alpha/Kconfig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index d6968d090d49..70e8343d00ba 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig @@ -338,6 +338,7 @@ config ALPHA_EV4 bool depends on ALPHA_JENSEN || (ALPHA_SABLE && !ALPHA_GAMMA) || ALPHA_LYNX || ALPHA_NORITAKE && !ALPHA_PRIMO || ALPHA_MIKASA && !ALPHA_PRIMO || ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P_CH || ALPHA_XL || ALPHA_NONAME || ALPHA_EB66 || ALPHA_EB66P || ALPHA_P2K default y if !ALPHA_LYNX + default y if !ALPHA_EV5 config ALPHA_LCA bool @@ -365,10 +366,6 @@ config ALPHA_EV5 bool "EV5 CPU(s) (model 5/xxx)?" if ALPHA_LYNX default y if ALPHA_RX164 || ALPHA_RAWHIDE || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_SABLE && ALPHA_GAMMA || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR -config ALPHA_EV4 - bool - default y if ALPHA_LYNX && !ALPHA_EV5 - config ALPHA_CIA bool depends on ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR From patchwork Wed Feb 21 14:01:45 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13565593 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 0D1F27E76D; Wed, 21 Feb 2024 14:01:53 +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=1708524113; cv=none; b=a8MCxUnozlnfByARk7y7CF96hCcZkzEzrwHu5pLYqDVI3IFGW1bOgbCatgJA406TofqEO+9ErC3E04Ejz+7pbVEp31nowRwqyOU4YCDIpHjgIqucNmJbND04kjWGNGjlr088O4Y6HgnKBqUTXjUlPdxmvn4ETQ0vhAfVVTNMK2U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708524113; c=relaxed/simple; bh=tOPetmVZd5nriXjwm0xC4K1pqFu30tsSqsbo9u/5sZw=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=l5N0Ne0/LXbRm0jkFqCVz9UosVbUXq/h9kNl+DdswMap4IRpgzDWHGItKPdO6IXvKz7yOsClL1VRntte4CssB/WEwg/TMtaxVKtaObqUoJ7puP019nyQOzNjcVcihh9tWmLBBAPqyxBWq2bb+C4nVwaAzh1I8IEj9omYfTcd2jA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AewEnIyy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="AewEnIyy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7018CC433F1; Wed, 21 Feb 2024 14:01:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1708524112; bh=tOPetmVZd5nriXjwm0xC4K1pqFu30tsSqsbo9u/5sZw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AewEnIyy777/EeptGwRt71ElB8skmaU4o+fqRZsSNKKxnS6ImqSO4Eq53iN/eArsY 6k+zgEkZxybRB8iV+5YntiKda9vR9/gkcsgyp8bFqFVx+ue3BinNRv9P3Wtlf7n/4u KKm9pUaY1gzwbnI7cVHlGS4txIQ9j2IsvNbOZsfP/S8GP73ffvGVOm4f7cz3brOTvT jGZcYe/94HchbESbwqtw8DTVKYy9AebP7Fg2VnYWDWW76Sb4Bo1uZWMe8l6Pazjt35 ba33s958lTY/QFowNdzt0ou96D3U525UQk/C7ZhdApyNBv9LNscUsc7GxXSrs19UNM gVRzyPhaQ2NiA== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Ivan Kokshaysky , Matt Turner , Richard Henderson , linux-alpha@vger.kernel.org Subject: [PATCH v2 2/2] alpha: merge two entries for CONFIG_ALPHA_GAMMA Date: Wed, 21 Feb 2024 23:01:45 +0900 Message-Id: <20240221140145.2658672-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20240221140145.2658672-1-masahiroy@kernel.org> References: <20240221140145.2658672-1-masahiroy@kernel.org> Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 There are two entries for CONFIG_ALPHA_GAMMA, with the second one 7 lines below. Merge them together. Signed-off-by: Masahiro Yamada --- Changes in v2: - Fix the 'depends on' line arch/alpha/Kconfig | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index 70e8343d00ba..fe5ae3aea999 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig @@ -390,16 +390,12 @@ config ALPHA_PRIMO Say Y if you have an AS 1000 5/xxx or an AS 1000A 5/xxx. config ALPHA_GAMMA - bool "EV5 CPU(s) (model 5/xxx)?" - depends on ALPHA_SABLE + bool "EV5 CPU(s) (model 5/xxx)?" if ALPHA_SABLE + depends on ALPHA_SABLE || ALPHA_LYNX + default ALPHA_LYNX help Say Y if you have an AS 2000 5/xxx or an AS 2100 5/xxx. -config ALPHA_GAMMA - bool - depends on ALPHA_LYNX - default y - config ALPHA_T2 bool depends on ALPHA_SABLE || ALPHA_LYNX