summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKent Gibson <warthog618@gmail.com>2021-01-19 20:30:56 +0800
committerBartosz Golaszewski <bgolaszewski@baylibre.com>2021-02-15 11:43:28 +0100
commit999e71c35122b4e9d9a9f7245c9fe7fd72ae5ca3 (patch)
treecbbc0beaf59a66657bc4ba1f1ebcfc2ec1748ec7 /tools
parent01e1250f135b081accb03155225d793bb80cef54 (diff)
downloadlinux-999e71c35122b4e9d9a9f7245c9fe7fd72ae5ca3.tar.bz2
selftests: remove obsolete gpio references from kselftest_deps.sh
GPIO Makefile has been greatly simplified so remove references to lines which no longer exist. Signed-off-by: Kent Gibson <warthog618@gmail.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testing/selftests/kselftest_deps.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/testing/selftests/kselftest_deps.sh b/tools/testing/selftests/kselftest_deps.sh
index bbc04646346b..00e60d6eb16b 100755
--- a/tools/testing/selftests/kselftest_deps.sh
+++ b/tools/testing/selftests/kselftest_deps.sh
@@ -129,13 +129,11 @@ l2_tests=$(grep -r --include=Makefile ": LDLIBS" | \
grep -v "VAR_LDLIBS" | awk -F: '{print $1}')
# Level 3
-# gpio, memfd and others use pkg-config to find mount and fuse libs
+# memfd and others use pkg-config to find mount and fuse libs
# respectively and save it in VAR_LDLIBS. If pkg-config doesn't find
# any, VAR_LDLIBS set to default.
# Use the default value and filter out pkg-config for dependency check.
# e.g:
-# gpio/Makefile
-# VAR_LDLIBS := $(shell pkg-config --libs mount) 2>/dev/null)
# memfd/Makefile
# VAR_LDLIBS := $(shell pkg-config fuse --libs 2>/dev/null)