mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 07:02:23 +00:00
5af7a6f3e2
The pasemi MSI code is currently always built when MPIC=y && PCI_MSI=y. It should not have any effect on other platforms, because it immediately checks the MPIC's compatible property for "pasemi,pwrficient-openpic". However it's odd that it's still built even when PASEMI=n. It also needn't be in sysdev, as it's only used by pasemi. So move it into platforms/pasemi, whereby it will only be built for PASEMI=y. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
4 lines
151 B
Makefile
4 lines
151 B
Makefile
obj-y += setup.o pci.o time.o idle.o powersave.o iommu.o dma_lib.o misc.o
|
|
obj-$(CONFIG_PPC_PASEMI_MDIO) += gpio_mdio.o
|
|
obj-$(CONFIG_PCI_MSI) += msi.o
|