mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 00:54:09 +08:00
18c250bd7e
Make the FF-A bus on its own as a distinct module initialized at subsys_initcall level when builtin. Keep the FF-A driver core stack, together with any configured transport, in a different module initialized as module_init level. FF-A drivers initialization is now changed to module_init level. Acked-by: Sebastian Ene <sebastianene@google.com> Link: https://lore.kernel.org/r/20240515094028.1947976-2-sudeep.holla@arm.com Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
9 lines
309 B
Makefile
9 lines
309 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
ffa-bus-y = bus.o
|
|
ffa-driver-y = driver.o
|
|
ffa-transport-$(CONFIG_ARM_FFA_SMCCC) += smccc.o
|
|
ffa-core-objs := $(ffa-bus-y)
|
|
ffa-module-objs := $(ffa-driver-y) $(ffa-transport-y)
|
|
obj-$(CONFIG_ARM_FFA_TRANSPORT) = ffa-core.o
|
|
obj-$(CONFIG_ARM_FFA_TRANSPORT) += ffa-module.o
|