Fix (harmless) render-device.sh shellcheck warnings

Signed-off-by: Eero Tamminen <eero.t.tamminen@intel.com>
This commit is contained in:
Eero Tamminen 2023-12-01 20:21:30 +02:00
parent 3739fcbd7f
commit 4b3944600f

View File

@ -73,14 +73,14 @@ for i in $(seq 128 255); do
vendor=$(cat "/sys/class/drm/renderD$i/device/vendor") vendor=$(cat "/sys/class/drm/renderD$i/device/vendor")
if [ "$vendor" = "$intel" ]; then if [ "$vendor" = "$intel" ]; then
visible=$((visible+1)) visible=$((visible+1))
if [ $visible -eq $required ]; then if [ $visible -eq "$required" ]; then
break break
fi fi
fi fi
fi fi
done done
if [ $visible -ne $required ]; then if [ $visible -ne "$required" ]; then
usage "$visible Intel GPU(s) found, not $required as requested" usage "$visible Intel GPU(s) found, not $required as requested"
fi fi
device="/dev/dri/renderD$i" device="/dev/dri/renderD$i"
@ -91,7 +91,7 @@ if [ $# -eq 0 ]; then
fi fi
if [ $# -lt 2 ]; then if [ $# -lt 2 ]; then
usage "media program and/or GPU selection option missing" usage "media program and/or its GPU selection option missing"
fi fi
# run given media workload with GPU device name appended to end # run given media workload with GPU device name appended to end