xtensa-build-all: fix gcc _defconfig for byt|cht|cnl|sue

In renaming of $j -> $platform one instance of variable was missed which
has led to wrong configs being used.

Fixes: 941dfcccb0 ("use switch case")

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
This commit is contained in:
Shreeya Patel 2020-07-13 10:32:48 +05:30 committed by Liam Girdwood
parent 9555b97665
commit d434dbc8e1
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ do
PATH=$pwd/../$HOST/bin:$OLDPATH
COMPILER="gcc"
case $j in
case "$platform" in
byt|cht|cnl|sue) DEFCONFIG_PATCH="_gcc";;
*) DEFCONFIG_PATCH="";;
esac