Skip to content

Commit

Permalink
Merge branch 'android15-6.6-lts' v6.6.50 into HEAD
Browse files Browse the repository at this point in the history
Merge commit 'ffff4c673ce12ba924ef82848f1a35dea5330c5f' into HEAD

Signed-off-by: simonami99 <[email protected]>
  • Loading branch information
simonami99 committed Oct 18, 2024
1 parent 641540c commit 6223ad4
Show file tree
Hide file tree
Showing 104 changed files with 4,726 additions and 450 deletions.
22 changes: 22 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -876,15 +876,36 @@ ddk_headers(
# Implementation details for DDK headers. The targets below cannot be directly
# depended on by DDK modules.

# Headers needed to include drivers/usb/host/xhci.h.
ddk_headers(
name = "xhci_headers",
hdrs = [
"drivers/usb/core/hub.h",
"drivers/usb/core/usb.h",
"drivers/usb/host/pci-quirks.h",
"drivers/usb/host/xhci.h",
"drivers/usb/host/xhci-ext-caps.h",
"drivers/usb/host/xhci-plat.h",
],
linux_includes = [
"drivers/usb",
"drivers/usb/host",
],
visibility = ["//visibility:private"],
)

# DDK headers allowlist. This is the list of all headers and include
# directories that are safe to use in DDK modules.
ddk_headers(
name = "all_headers_allowlist_aarch64",
hdrs = [
"drivers/thermal/thermal_core.h",
"drivers/thermal/thermal_netlink.h",
"sound/usb/card.h",
"sound/usb/usbaudio.h",
":all_headers_allowlist_aarch64_globs",
":all_headers_allowlist_common_globs",
":xhci_headers",
],
# The list of include directories where source files can #include headers
# from. In other words, these are the `-I` option to the C compiler.
Expand All @@ -893,6 +914,7 @@ ddk_headers(
"arch/arm64/include",
"arch/arm64/include/uapi",
"drivers/thermal",
"sound/usb",
"include",
"include/uapi",
],
Expand Down
Loading

0 comments on commit 6223ad4

Please sign in to comment.