tools: fix a typo

"Formate" and "format" are two different words, in this case it's
"format" that is meant.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
Guennadi Liakhovetski 2019-03-06 13:23:08 +01:00 committed by Liam Girdwood
parent 30a65051d5
commit 01f1a4aeae
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
NUMBER=$# # number of test pipeline
PARAMS=$@ # name of test pipeline
MAXLOOPS=1000 # loop number
FORMATE=s16_le # sample formate
FORMAT=s16_le # sample format
CHANNEL=2 # test channel number
FREQENCY=48000 # sample frequency
T_TIME=3 # time for each test
@ -61,7 +61,7 @@ pipeline_test()
fi
# run pipeline
$cmd -Dhw:0,$pcmid -f $FORMATE -c $CHANNEL -r $FREQENCY $data &
$cmd -Dhw:0,$pcmid -f $FORMAT -c $CHANNEL -r $FREQENCY $data &
PID[$index]=$!
let index++
done