From 6d03fcb24d15fcb8f8758759612c612462ecf0ee Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Mon, 28 Nov 2022 11:17:23 -0800 Subject: [PATCH] ANDROID: Fix DDK include dirs for arm. It is a typo to put arch/arm64/include/* in the include dirs. Test: treehugger Bug: 254735056 Change-Id: I151786b6c6ab3397a2eb829e3c86cc3303ff0ceb Signed-off-by: Yifan Hong --- BUILD.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 61218e485ef5..556abefa0811 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -437,8 +437,8 @@ ddk_headers( # from. In other words, these are the `-I` option to the C compiler. # These are prepended to LINUXINCLUDE. linux_includes = [ - "arch/arm64/include", - "arch/arm64/include/uapi", + "arch/arm/include", + "arch/arm/include/uapi", "include", "include/uapi", ],