diff options
author | Paul E. McKenney <paulmck@kernel.org> | 2023-07-06 01:49:29 +0300 |
---|---|---|
committer | Paul E. McKenney <paulmck@kernel.org> | 2023-07-15 01:10:57 +0300 |
commit | 2f25542c6f626011ecf52cf8eb4a9b666cb8da86 (patch) | |
tree | 38286b69a852ee31c5d167651d2d0516ce88e5e4 /tools/testing/selftests/rcutorture | |
parent | 80021ffb6820baf77d17b7a3b7ec9e89faa69578 (diff) | |
download | linux-2f25542c6f626011ecf52cf8eb4a9b666cb8da86.tar.xz |
rcutorture: Remove obsolete parameter check from mkinitrd.sh
The mkinitrd.sh script no longer takes an argument, so this commit
therefore removes the code that checks for the parameter being present.
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Diffstat (limited to 'tools/testing/selftests/rcutorture')
-rwxr-xr-x | tools/testing/selftests/rcutorture/bin/mkinitrd.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/testing/selftests/rcutorture/bin/mkinitrd.sh b/tools/testing/selftests/rcutorture/bin/mkinitrd.sh index 71f0dfbb2a6d..3af3a86a0091 100755 --- a/tools/testing/selftests/rcutorture/bin/mkinitrd.sh +++ b/tools/testing/selftests/rcutorture/bin/mkinitrd.sh @@ -10,7 +10,6 @@ D=tools/testing/selftests/rcutorture # Prerequisite checks -[ -z "$D" ] && echo >&2 "No argument supplied" && exit 1 if [ ! -d "$D" ]; then echo >&2 "$D does not exist: Malformed kernel source tree?" exit 1 |