fe7b3b613f
git-subtree-dir: qcom/opensource/spu-kernel git-subtree-mainline:587685c687
git-subtree-split:0edbf1a122
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/spu-kernel tag: LA.VENDOR.14.3.0.r1-17300-lanai.QSSI15.0
24 lines
483 B
Python
24 lines
483 B
Python
load(":spu_module_build.bzl", "spu_driver_module_entry")
|
|
|
|
|
|
spu_driver_modules = spu_driver_module_entry([":spu_headers"])
|
|
module_entry = spu_driver_modules.register
|
|
|
|
#--------------- SPU-DRIVERS MODULES ------------------
|
|
|
|
module_entry(
|
|
name = "spcom",
|
|
config_option = "CONFIG_MSM_SPCOM",
|
|
srcs = ["spcom.c"],
|
|
path = "drivers"
|
|
)
|
|
|
|
module_entry(
|
|
name = "spss_utils",
|
|
config_option = "CONFIG_MSM_SPSS_UTILS",
|
|
srcs = ["spss_utils.c"],
|
|
path = "drivers"
|
|
)
|
|
|
|
|