mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
3cfc535c5d
Clean up pdt.c: - make build dependent upon config OF_PROMTREE - #ifdef out the sparc-specific stuff - create pdt-specific header Signed-off-by: Andres Salomon <dilinger@queued.net> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
11 lines
339 B
Makefile
11 lines
339 B
Makefile
obj-y = base.o
|
|
obj-$(CONFIG_OF_FLATTREE) += fdt.o
|
|
obj-$(CONFIG_OF_PROMTREE) += pdt.o
|
|
obj-$(CONFIG_OF_ADDRESS) += address.o
|
|
obj-$(CONFIG_OF_IRQ) += irq.o
|
|
obj-$(CONFIG_OF_DEVICE) += device.o platform.o
|
|
obj-$(CONFIG_OF_GPIO) += gpio.o
|
|
obj-$(CONFIG_OF_I2C) += of_i2c.o
|
|
obj-$(CONFIG_OF_SPI) += of_spi.o
|
|
obj-$(CONFIG_OF_MDIO) += of_mdio.o
|