From nobody Fri Dec 19 04:54:44 2025 Received: from baptiste.telenet-ops.be (baptiste.telenet-ops.be [195.130.132.51]) (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 7CC691F8AC9 for ; Tue, 3 Dec 2024 16:27:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.51 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733243266; cv=none; b=VjuOgxuFIQ1oomiqY406+Isawe/rqt9wSTeW8IjvMK9fbLYppoGhsCyyulhCq6dfCJ+x/c/iYkUOr/oYwx+dtjacGxx/pJ8wPOcS9eCmkDcJcLz1sliuN7sj6cUhfVg4tLigIa6lpDfw/C4pl5itDUH4TW97x8fprLxsNqaYNy8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733243266; c=relaxed/simple; bh=G8mBbcOXjBJXiDnv2W25jOyCbHtJ6+YVRlsjMpNEpLg=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=pRkpcm/929mg9+9Fw34SHtWv3GzCkjnbG/tA0MmY5FOanvB8zhNnqmV1PDr6NsyXwDkQDuZ0/ZaKu7euVqJ9HvXs2xoL0ouOdbDApS9SZjSD9RbPI0/bauzUKgERAAk4TZtQMlGe1qc+HzzCr4glI/UqNTZ6c5YT1XUiREkXAm4= 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.132.51 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 baptiste.telenet-ops.be with cmsmtp id kGTi2D0053sLyzB01GTiRK; Tue, 03 Dec 2024 17:27:42 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tIVkT-000DUh-Vp; Tue, 03 Dec 2024 17:27:41 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tIVkT-00AUu5-Sm; Tue, 03 Dec 2024 17:27:41 +0100 From: Geert Uytterhoeven To: Thomas Gleixner , Antonio Borneo , Maxime Coquelin , Alexandre Torgue Cc: linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] irqchip: STM32MP_EXTI should not default to y when compile-testing Date: Tue, 3 Dec 2024 17:27:40 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Merely enabling compile-testing should not enable additional functionality. Fixes: 0be58e0553812fcb ("irqchip/stm32mp-exti: Allow building as module") Signed-off-by: Geert Uytterhoeven Reviewed-by: Antonio Borneo --- drivers/irqchip/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index 5784556adb36af73..c94aaadc0ed2be70 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -416,7 +416,7 @@ config PARTITION_PERCPU config STM32MP_EXTI tristate "STM32MP extended interrupts and event controller" depends on (ARCH_STM32 && !ARM_SINGLE_ARMV7M) || COMPILE_TEST - default y + default ARCH_STM32 && !ARM_SINGLE_ARMV7M select IRQ_DOMAIN_HIERARCHY select GENERIC_IRQ_CHIP help --=20 2.34.1