lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <40095112efd1b2214e4223109fd9f0c6d0158a2d.1680609318.git.geert+renesas@glider.be> Date: Tue, 4 Apr 2023 13:59:00 +0200 From: Geert Uytterhoeven <geert+renesas@...der.be> To: Dario Binacchi <dario.binacchi@...rulasolutions.com>, Vincent Mailhol <mailhol.vincent@...adoo.fr>, Wolfgang Grandegger <wg@...ndegger.com>, Marc Kleine-Budde <mkl@...gutronix.de> Cc: linux-can@...r.kernel.org, netdev@...r.kernel.org, Geert Uytterhoeven <geert+renesas@...der.be> Subject: [PATCH] can: CAN_BXCAN should depend on ARCH_STM32 The STMicroelectronics STM32 basic extended CAN Controller (bxCAN) is only present on STM32 SoCs. Hence drop the "|| OF" part from its dependency rule, to prevent asking the user about this driver when configuring a kernel without STM32 SoC support. Fixes: f00647d8127be4d3 ("can: bxcan: add support for ST bxCAN controller") Signed-off-by: Geert Uytterhoeven <geert+renesas@...der.be> --- Until v3[1], BXCAN depended on "(ARCH_STM32 || COMPILE_TEST) && OF". v4[2] changed this from "&& OF" to "|| OF", for no apparent reason, and without mentioning this in the changelog. [1] https://lore.kernel.org/all/20220828133329.793324-5-dario.binacchi@amarulasolutions.com [2] https://lore.kernel.org/all/20220925175209.1528960-6-dario.binacchi@amarulasolutions.com --- drivers/net/can/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/can/Kconfig b/drivers/net/can/Kconfig index 3ceccafd701b2a31..b190007c01bec5f4 100644 --- a/drivers/net/can/Kconfig +++ b/drivers/net/can/Kconfig @@ -95,7 +95,7 @@ config CAN_AT91 config CAN_BXCAN tristate "STM32 Basic Extended CAN (bxCAN) devices" - depends on OF || ARCH_STM32 || COMPILE_TEST + depends on ARCH_STM32 || COMPILE_TEST depends on HAS_IOMEM select CAN_RX_OFFLOAD help -- 2.34.1
Powered by blists - more mailing lists