From: Kees Cook Date: Wed, 23 Apr 2025 02:37:47 +0000 (-0700) Subject: EISA: Move devlist.h out of obj to always X-Git-Tag: v6.16-rc1~30^2~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=196d05a39caeb9c2bdf48ec3589af087f9217b0e;p=thirdparty%2Flinux.git EISA: Move devlist.h out of obj to always I put devlist.h into the wrong Makefile macro ("obj") to get it included in "targets". Put it into "always" so nothing tries to link against it. Solves CONFIG_EISA=y i386 build failure: ld: vmlinux.a: member drivers/eisa/devlist.h in archive is not an object Reported-by: Randy Dunlap Closes: https://lore.kernel.org/all/4a8ba1d0-d2d9-41f8-abf1-d45ec8996d10@infradead.org Fixes: dd09eb0e2cc4 ("EISA: Increase length of device names") Signed-off-by: Kees Cook Acked-by: Randy Dunlap Tested-by: Randy Dunlap Link: https://lore.kernel.org/r/20250423023743.work.350-kees@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/eisa/Makefile b/drivers/eisa/Makefile index f0d6cf7d1f32f..552bd9478340b 100644 --- a/drivers/eisa/Makefile +++ b/drivers/eisa/Makefile @@ -1,7 +1,8 @@ # SPDX-License-Identifier: GPL-2.0 # Makefile for the Linux device tree -obj-$(CONFIG_EISA) += devlist.h eisa-bus.o +always-$(CONFIG_EISA) += devlist.h +obj-$(CONFIG_EISA) += eisa-bus.o obj-${CONFIG_EISA_PCI_EISA} += pci_eisa.o # virtual_root.o should be the last EISA root device to initialize,