diff mbox series

Documentation: kselftest: fix path to test module files

Message ID 20210224130605.347728-1-antonio.terceiro@linaro.org
State Accepted
Commit 87f1c20e2effd0a0b7e34b0b3bc06821425e1562
Headers show
Series Documentation: kselftest: fix path to test module files | expand

Commit Message

Antonio Terceiro Feb. 24, 2021, 1:06 p.m. UTC
The top-level kselftest directory is not called kselftest, but
selftests.

Signed-off-by: Antonio Terceiro <antonio.terceiro@linaro.org>

Cc: Shuah Khan <shuah@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
---
 Documentation/dev-tools/kselftest.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.30.1
diff mbox series

Patch

diff --git a/Documentation/dev-tools/kselftest.rst b/Documentation/dev-tools/kselftest.rst
index a901def730d9..dcefee707ccd 100644
--- a/Documentation/dev-tools/kselftest.rst
+++ b/Documentation/dev-tools/kselftest.rst
@@ -239,8 +239,8 @@  using a shell script test runner.  ``kselftest/module.sh`` is designed
 to facilitate this process.  There is also a header file provided to
 assist writing kernel modules that are for use with kselftest:
 
-- ``tools/testing/kselftest/kselftest_module.h``
-- ``tools/testing/kselftest/kselftest/module.sh``
+- ``tools/testing/selftests/kselftest_module.h``
+- ``tools/testing/selftests/kselftest/module.sh``
 
 How to use
 ----------