summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-04-11 09:36:38 -0700
committerSteven Moreland <smoreland@google.com>2017-04-11 20:11:15 -0700
commit1df2ad3daf1e72fdfbf553007c88f1c174aa4f97 (patch)
tree280db87e3daf5bfebe61a2a4f1e8db44e1b54c38
parent00b192cee2de4f72c18a218ac7a1e7473cc72112 (diff)
downloadlibhardware-1df2ad3daf1e72fdfbf553007c88f1c174aa4f97.tar.gz
audio.*.default: remove unneeded dependency/IWYU
libcutils not needed as only functions from liblog are being used Test: links (cherry picked from commit 02b5d168f2c2427489a54ea58defd6d602c46968) Merged-In: I2a2cb58d883c0ec1e26a2f023865b137517da432 Change-Id: I2a2cb58d883c0ec1e26a2f023865b137517da432
-rw-r--r--modules/audio/Android.bp3
-rw-r--r--modules/audio/audio_hw.c2
2 files changed, 1 insertions, 4 deletions
diff --git a/modules/audio/Android.bp b/modules/audio/Android.bp
index 02da2b37..80cab199 100644
--- a/modules/audio/Android.bp
+++ b/modules/audio/Android.bp
@@ -24,7 +24,6 @@ cc_library_shared {
srcs: ["audio_hw.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wno-unused-parameter"],
}
@@ -41,7 +40,6 @@ cc_library_shared {
srcs: ["audio_hw.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wno-unused-parameter"],
}
@@ -54,7 +52,6 @@ cc_library_shared {
srcs: ["audio_policy.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wno-unused-parameter"],
}
diff --git a/modules/audio/audio_hw.c b/modules/audio/audio_hw.c
index 35901e41..d5a29370 100644
--- a/modules/audio/audio_hw.c
+++ b/modules/audio/audio_hw.c
@@ -23,7 +23,7 @@
#include <stdint.h>
#include <sys/time.h>
-#include <cutils/log.h>
+#include <log/log.h>
#include <hardware/hardware.h>
#include <system/audio.h>