mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
1ca7e2062b
At present only root nodes in the device tree are scanned for devices. But some devices can have children. For example a SPI bus may have several children for each of its chip selects. Add a function which scans subnodes and binds devices for each one. This can be used for the root node scan also, so change it. A device can call this function in its bind() or probe() methods to bind its children. Signed-off-by: Simon Glass <sjg@chromium.org>
21 lines
567 B
Makefile
21 lines
567 B
Makefile
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_CMD_DM) += cmd_dm.o
|
|
obj-$(CONFIG_DM_TEST) += bus.o
|
|
obj-$(CONFIG_DM_TEST) += test-driver.o
|
|
obj-$(CONFIG_DM_TEST) += test-fdt.o
|
|
obj-$(CONFIG_DM_TEST) += test-main.o
|
|
obj-$(CONFIG_DM_TEST) += test-uclass.o
|
|
obj-$(CONFIG_DM_TEST) += ut.o
|
|
|
|
# Tests for particular subsystems - when enabling driver model for a new
|
|
# subsystem you must add sandbox tests here.
|
|
obj-$(CONFIG_DM_TEST) += core.o
|
|
obj-$(CONFIG_DM_TEST) += ut.o
|
|
ifneq ($(CONFIG_SANDBOX),)
|
|
obj-$(CONFIG_DM_GPIO) += gpio.o
|
|
endif
|