Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 # Greybus core
0003 greybus-y :=    core.o          \
0004                 debugfs.o       \
0005                 hd.o            \
0006                 manifest.o      \
0007                 module.o        \
0008                 interface.o     \
0009                 bundle.o        \
0010                 connection.o    \
0011                 control.o       \
0012                 svc.o           \
0013                 svc_watchdog.o  \
0014                 operation.o
0015 
0016 obj-$(CONFIG_GREYBUS)           += greybus.o
0017 
0018 # needed for trace events
0019 ccflags-y += -I$(src)
0020 
0021 # Greybus Host controller drivers
0022 gb-es2-y := es2.o
0023 
0024 obj-$(CONFIG_GREYBUS_ES2)       += gb-es2.o
0025 
0026