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 17:37:41 +0000
commit02b5d168f2c2427489a54ea58defd6d602c46968 (patch)
treebf3cdda972369fac56c526f0a32ff621a64fa035
parent5cbf8f829748eaa243a8f7c6491fbce031450cf4 (diff)
downloadlibhardware-02b5d168f2c2427489a54ea58defd6d602c46968.tar.gz
audio.*.default: remove unneeded dependency/IWYU
libcutils not needed as only functions from liblog are being used Test: links 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 bd23b037..84daead2 100644
--- a/modules/audio/Android.bp
+++ b/modules/audio/Android.bp
@@ -25,7 +25,6 @@ cc_library_shared {
srcs: ["audio_hw.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wall", "-Werror", "-Wno-unused-parameter"],
}
@@ -43,7 +42,6 @@ cc_library_shared {
srcs: ["audio_hw.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wall", "-Werror", "-Wno-unused-parameter"],
}
@@ -57,7 +55,6 @@ cc_library_shared {
srcs: ["audio_policy.c"],
shared_libs: [
"liblog",
- "libcutils",
],
cflags: ["-Wall", "-Werror", "-Wno-unused-parameter"],
}
diff --git a/modules/audio/audio_hw.c b/modules/audio/audio_hw.c
index 55a5c3b5..43d13a91 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>