mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
415f59142d
This adds very minimal support for booting cns3xxx using a device tree. It should support the same devices that cns3420vb provides but gets them from the DT. All devices that don't have their own binding are probed through auxdata. This is completely untested and likely incomplete. Booting through ATAGS is made optional, so it can be turned off by anybody who has a DTB file. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
6 lines
190 B
Makefile
6 lines
190 B
Makefile
obj-$(CONFIG_ARCH_CNS3XXX) += cns3xxx.o
|
|
cns3xxx-y += core.o pm.o
|
|
cns3xxx-$(CONFIG_ATAGS) += devices.o
|
|
cns3xxx-$(CONFIG_PCI) += pcie.o
|
|
cns3xxx-$(CONFIG_MACH_CNS3420VB) += cns3420vb.o
|