mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
284b018973
This patch adds support for populating an SPI bus based on data in the OF device tree. This is useful for powerpc platforms which use the device tree instead of discrete code for describing platform layout. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
6 lines
162 B
Makefile
6 lines
162 B
Makefile
obj-y = base.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
|