From ef73ce8d299cfaaa45e9a9bf17c4ea95d71c54e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan-Jen=20=28=E6=B7=B5=E4=BB=81=29=20Cheng?= Date: Mon, 31 Mar 2025 05:35:10 +0000 Subject: [PATCH] ANDROID: Add pcie-designware.h and pci.h to aarch64 allowlist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Export the header in all_headers_allowlist_aarch64, for pcie drivers to use. Bug: 343869732 Bug: 407023244 Test: Verified the pcie ddk modules are able to include the header. Change-Id: I1ab5144bf58e6591eefc966e7300770543976012 Signed-off-by: Yuan-Jen (淵仁) Cheng --- BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 933813843716..469f44ead56e 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1625,6 +1625,8 @@ ddk_headers( name = "all_headers_allowlist_aarch64", hdrs = [ "drivers/extcon/extcon.h", + "drivers/pci/controller/dwc/pcie-designware.h", + "drivers/pci/pci.h", "drivers/thermal/thermal_core.h", "drivers/thermal/thermal_debugfs.h", "drivers/thermal/thermal_netlink.h", @@ -1643,6 +1645,8 @@ ddk_headers( "arch/arm64/include", "arch/arm64/include/uapi", "drivers/extcon", + "drivers/pci", + "drivers/pci/controller/dwc", "drivers/thermal", "drivers/usb", "sound/usb",