mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-19 13:50:48 +00:00

The ISA variable is only defined if X86_32 is also defined. However,
these drivers are still useful and in use on at least some modern 64-bit
x86 industrial systems as well. With the correct module parameters, they
work as long as IO port communication is possible, despite their name
having ISA in them.
Fixes: a29689e60e
("net: handle HAS_IOPORT dependencies")
Signed-off-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
Link: https://patch.msgid.link/20240919174151.15473-2-tmuehlbacher@posteo.net
Cc: stable@vger.kernel.org
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
23 lines
646 B
Text
23 lines
646 B
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
menuconfig CAN_CC770
|
|
tristate "Bosch CC770 and Intel AN82527 devices"
|
|
depends on HAS_IOMEM
|
|
|
|
if CAN_CC770
|
|
|
|
config CAN_CC770_ISA
|
|
tristate "ISA Bus based legacy CC770 driver"
|
|
depends on HAS_IOPORT
|
|
help
|
|
This driver adds legacy support for CC770 and AN82527 chips
|
|
connected to the ISA bus using I/O port, memory mapped or
|
|
indirect access.
|
|
|
|
config CAN_CC770_PLATFORM
|
|
tristate "Generic Platform Bus based CC770 driver"
|
|
help
|
|
This driver adds support for the CC770 and AN82527 chips
|
|
connected to the "platform bus" (Linux abstraction for directly
|
|
to the processor attached devices).
|
|
|
|
endif
|