diff options
| author | Sean Anderson <[email protected]> | 2020-06-24 06:41:12 -0400 |
|---|---|---|
| committer | Andes <[email protected]> | 2020-07-01 15:01:21 +0800 |
| commit | 4a3390f1d3b71f0645eb281176f00cd0d5ac2dcb (patch) | |
| tree | 373138fe61aea783757084532eb3c7c3111ee285 /drivers/core/Makefile | |
| parent | f9c7d4f99f51ac9c1cf513111c21395f93d2dd53 (diff) | |
dm: Add support for simple-pm-bus
This type of bus is used in Linux to designate buses which have power
domains and/or clocks which need to be enabled before their child devices
can be used. Because power domains are automatically enabled before probing
in U-Boot, we just need to enable any clocks present.
Signed-off-by: Sean Anderson <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/core/Makefile')
| -rw-r--r-- | drivers/core/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/core/Makefile b/drivers/core/Makefile index c707026a3a0..10f4bece335 100644 --- a/drivers/core/Makefile +++ b/drivers/core/Makefile @@ -7,6 +7,7 @@ obj-$(CONFIG_$(SPL_TPL_)ACPIGEN) += acpi.o obj-$(CONFIG_DEVRES) += devres.o obj-$(CONFIG_$(SPL_)DM_DEVICE_REMOVE) += device-remove.o obj-$(CONFIG_$(SPL_)SIMPLE_BUS) += simple-bus.o +obj-$(CONFIG_SIMPLE_PM_BUS) += simple-pm-bus.o obj-$(CONFIG_DM) += dump.o obj-$(CONFIG_$(SPL_TPL_)REGMAP) += regmap.o obj-$(CONFIG_$(SPL_TPL_)SYSCON) += syscon-uclass.o |
