Merge tag 'pm-5.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux-2.6-microblaze.git] / drivers / eisa / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for the Linux device tree
3
4 obj-$(CONFIG_EISA)              += eisa-bus.o
5 obj-${CONFIG_EISA_PCI_EISA}     += pci_eisa.o
6
7 # virtual_root.o should be the last EISA root device to initialize,
8 # so leave it at the end of the list.
9 obj-${CONFIG_EISA_VIRTUAL_ROOT} += virtual_root.o
10
11
12 # Ugly hack to get DEVICE_NAME_SIZE value...
13 DEVICE_NAME_SIZE = 50
14
15 $(obj)/eisa-bus.o: $(obj)/devlist.h
16
17 quiet_cmd_eisaid = GEN     $@
18       cmd_eisaid = sed -e '/^\#/D' -e 's/^\([[:alnum:]]\{7\}\) \+"\([^"]\{1,$(DEVICE_NAME_SIZE)\}\).*"/EISA_DEVINFO ("\1", "\2"),/' $< > $@
19
20 clean-files := devlist.h
21 $(obj)/devlist.h: $(src)/eisa.ids include/linux/device.h
22         $(call cmd,eisaid)