From patchwork Tue Dec 3 16:23:16 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 847675 Received: from laurent.telenet-ops.be (laurent.telenet-ops.be [195.130.137.89]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CDD211F891F for ; Tue, 3 Dec 2024 16:23:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.89 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733243007; cv=none; b=Ht+9z+bnfDwQWHj/ifCia6tvo+jO7PGRXsKGWIhgJJDrfVEn9RG1homNbGh3QZgnUriLA1szYtL+mL4RtLgPI/wAfhjyn4GReCiZTqMElND6RBIEXT8BG2jjbFcTmsCgUcwXNk2HtH+Taf2i339/G116zAY3su450uvpdyjFeDs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733243007; c=relaxed/simple; bh=ZqyW0L1EB/orMfWSWzepZrl4Pr+Mrz+PY7OowGt515U=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=K044y4Eyu6c2nyWpdLOgQgqCPo7DHhAX4K/51AmcJBujtQ0xTkDxrP5N/XopnWmJ/rIeXqZnEMXHgzNkFRtnyYDc58OsOjEAYeR0cE0NPAg7guzhwfyYPkXhEH4zf8DjlWD8/49/R5zfoxc+wwVt7rarNZKvy+LymnZ7qGLckCs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.89 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:829d:a1e7:5b32:5d8e]) by laurent.telenet-ops.be with cmsmtp id kGPJ2D00L3sLyzB01GPJFm; Tue, 03 Dec 2024 17:23:22 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tIVgE-000DSa-NC; Tue, 03 Dec 2024 17:23:18 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tIVgE-00AOqD-K5; Tue, 03 Dec 2024 17:23:18 +0100 From: Geert Uytterhoeven To: Linus Walleij , Bartosz Golaszewski , Andrew Lunn , Gregory Clement , Sebastian Hesselbarth , =?utf-8?q?Uwe_Klei?= =?utf-8?q?ne-K=C3=B6nig?= Cc: linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] gpio: GPIO_MVEBU should not default to y when compile-testing Date: Tue, 3 Dec 2024 17:23:16 +0100 Message-Id: <6b9e55dbf544297d5acf743f6fa473791ab10644.1733242798.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-gpio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Merely enabling compile-testing should not enable additional functionality. Fixes: 956ee0c5c969c9ca ("gpio: mvebu: allow building the module with COMPILE_TEST=y") Signed-off-by: Geert Uytterhoeven --- drivers/gpio/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index f483201637062cab..d371ce2578ee9703 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -491,8 +491,9 @@ config GPIO_MT7621 Say yes here to support the Mediatek MT7621 SoC GPIO device. config GPIO_MVEBU - def_bool y + bool "Marvell Orion and EBU GPIO support" if COMPILE_TEST depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST + default PLAT_ORION || ARCH_MVEBU select GENERIC_IRQ_CHIP select REGMAP_MMIO