diff options
Diffstat (limited to 'drivers/pci/Makefile')
-rw-r--r-- | drivers/pci/Makefile | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index 3657f6199c48..716df015f8d0 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile | |||
@@ -3,14 +3,9 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \ | 5 | obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \ |
6 | names.o pci-driver.o search.o pci-sysfs.o \ | 6 | pci-driver.o search.o pci-sysfs.o rom.o setup-res.o |
7 | rom.o | ||
8 | obj-$(CONFIG_PROC_FS) += proc.o | 7 | obj-$(CONFIG_PROC_FS) += proc.o |
9 | 8 | ||
10 | ifndef CONFIG_SPARC64 | ||
11 | obj-y += setup-res.o | ||
12 | endif | ||
13 | |||
14 | obj-$(CONFIG_HOTPLUG) += hotplug.o | 9 | obj-$(CONFIG_HOTPLUG) += hotplug.o |
15 | 10 | ||
16 | # Build the PCI Hotplug drivers if we were asked to | 11 | # Build the PCI Hotplug drivers if we were asked to |
@@ -46,21 +41,6 @@ ifeq ($(CONFIG_PCI_DEBUG),y) | |||
46 | EXTRA_CFLAGS += -DDEBUG | 41 | EXTRA_CFLAGS += -DDEBUG |
47 | endif | 42 | endif |
48 | 43 | ||
49 | hostprogs-y := gen-devlist | ||
50 | |||
51 | # Dependencies on generated files need to be listed explicitly | ||
52 | $(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h | ||
53 | $(obj)/classlist.h: $(obj)/devlist.h | ||
54 | |||
55 | # And that's how to generate them | ||
56 | quiet_cmd_devlist = DEVLIST $@ | ||
57 | cmd_devlist = ( cd $(obj); ./gen-devlist ) < $< | ||
58 | $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist | ||
59 | $(call cmd,devlist) | ||
60 | |||
61 | # Files generated that shall be removed upon make clean | ||
62 | clean-files := devlist.h classlist.h | ||
63 | |||
64 | # Build PCI Express stuff if needed | 44 | # Build PCI Express stuff if needed |
65 | obj-$(CONFIG_PCIEPORTBUS) += pcie/ | 45 | obj-$(CONFIG_PCIEPORTBUS) += pcie/ |
66 | 46 | ||