diff options
author | Shuah Khan <skhan@linuxfoundation.org> | 2020-03-03 00:44:21 +0300 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-03-13 22:46:39 +0300 |
commit | 1dc74544edc6753d628fcd1059559fb0ddc1b422 (patch) | |
tree | ff5ce56a2e4eac40fb6a0e60e337ddbae539e4b6 /tools/testing/selftests/android | |
parent | 29e911ef7b706215caf02a82b0d3076611d6abe8 (diff) | |
download | linux-1dc74544edc6753d628fcd1059559fb0ddc1b422.tar.xz |
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/testing/selftests/android')
-rw-r--r-- | tools/testing/selftests/android/ion/Makefile | 2 |
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 |