Skip to content

Commit 196d05a

Browse files
keesgregkh
authored andcommitted
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 <rdunlap@infradead.org> Closes: https://lore.kernel.org/all/4a8ba1d0-d2d9-41f8-abf1-d45ec8996d10@infradead.org Fixes: dd09eb0 ("EISA: Increase length of device names") Signed-off-by: Kees Cook <kees@kernel.org> Acked-by: Randy Dunlap <rdunlap@infradead.org> Tested-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20250423023743.work.350-kees@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 97e72c1 commit 196d05a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/eisa/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# SPDX-License-Identifier: GPL-2.0
22
# Makefile for the Linux device tree
33

4-
obj-$(CONFIG_EISA) += devlist.h eisa-bus.o
4+
always-$(CONFIG_EISA) += devlist.h
5+
obj-$(CONFIG_EISA) += eisa-bus.o
56
obj-${CONFIG_EISA_PCI_EISA} += pci_eisa.o
67

78
# virtual_root.o should be the last EISA root device to initialize,

0 commit comments

Comments
 (0)