aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorShuah Khan <skhan@linuxfoundation.org>2020-03-02 14:44:21 -0700
committerShuah Khan <skhan@linuxfoundation.org>2020-03-13 13:46:39 -0600
commit1dc74544edc6753d628fcd1059559fb0ddc1b422 (patch)
treeff5ce56a2e4eac40fb6a0e60e337ddbae539e4b6 /tools
parentselftests: Fix kselftest O=objdir build from cluttering top level objdir (diff)
downloadlinux-dev-1dc74544edc6753d628fcd1059559fb0ddc1b422.tar.xz
linux-dev-1dc74544edc6753d628fcd1059559fb0ddc1b422.zip
selftests: android: ion: Fix ionmap_test compile error
ionmap_test compile rule is missing ipcsocket.c dependency. Add it to fix the following compile errors: ..android/ion/ionutils.c:221: undefined reference to `sendtosocket' ..android/ion/ionutils.c:243: undefined reference to `receivefromsocket' Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/android/ion/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/android/ion/Makefile b/tools/testing/selftests/android/ion/Makefile
index 0eb7ab626e1c..42b71f005332 100644
--- a/tools/testing/selftests/android/ion/Makefile
+++ b/tools/testing/selftests/android/ion/Makefile
@@ -17,4 +17,4 @@ include ../../lib.mk
$(OUTPUT)/ionapp_export: ionapp_export.c ipcsocket.c ionutils.c
$(OUTPUT)/ionapp_import: ionapp_import.c ipcsocket.c ionutils.c
-$(OUTPUT)/ionmap_test: ionmap_test.c ionutils.c
+$(OUTPUT)/ionmap_test: ionmap_test.c ionutils.c ipcsocket.c