mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-29 09:13:38 +00:00
128f20c018
In a future patch HAS_IOPORT=n will result in inb()/outb() and friends not being declared. We thus need to add HAS_IOPORT as dependency for those drivers using them. Co-developed-by: Arnd Bergmann <arnd@kernel.org> Signed-off-by: Arnd Bergmann <arnd@kernel.org> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com> Link: https://lore.kernel.org/r/20230516110038.2413224-18-schnelle@linux.ibm.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6 lines
190 B
Makefile
6 lines
190 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
altera-stapl-y = altera-jtag.o altera-comp.o altera.o
|
|
altera-stapl-$(CONFIG_HAS_IOPORT) += altera-lpt.o
|
|
|
|
obj-$(CONFIG_ALTERA_STAPL) += altera-stapl.o
|