diff options
author | John Klug <john.klug@multitech.com> | 2022-12-14 16:38:59 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2023-01-10 16:42:56 -0600 |
commit | 66f856814e518c825d262b509ec5feb120f7fea7 (patch) | |
tree | 01d577df61831ff77ab0ed026d0fadc45d8ee52e | |
parent | 8ce7bfd9d220216119b82c1cf53a3328b4bbf227 (diff) | |
download | meta-multitech-atmel-66f856814e518c825d262b509ec5feb120f7fea7.tar.gz meta-multitech-atmel-66f856814e518c825d262b509ec5feb120f7fea7.tar.bz2 meta-multitech-atmel-66f856814e518c825d262b509ec5feb120f7fea7.zip |
Fix bad variable names
-rw-r--r-- | recipes-kernel/rsi-91x/files/rs9113.default | 2 | ||||
-rwxr-xr-x | recipes-kernel/rsi-91x/files/rs9113.init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes-kernel/rsi-91x/files/rs9113.default b/recipes-kernel/rsi-91x/files/rs9113.default index 9d21862..7111825 100644 --- a/recipes-kernel/rsi-91x/files/rs9113.default +++ b/recipes-kernel/rsi-91x/files/rs9113.default @@ -66,4 +66,4 @@ INTSLEEPTIME=100000 # 00 is world. IEEE Country Codes # for cfg80211 driver. -CONTRY_CODE=00 +COUNTRY_CODE=00 diff --git a/recipes-kernel/rsi-91x/files/rs9113.init b/recipes-kernel/rsi-91x/files/rs9113.init index 890b886..2f570cf 100755 --- a/recipes-kernel/rsi-91x/files/rs9113.init +++ b/recipes-kernel/rsi-91x/files/rs9113.init @@ -82,7 +82,7 @@ case "$1" in exit 0 fi rs9116_reset - syslog $LOG_INFO "Loading rs91x modules with COEX=$COEX_MODE and Country=$SET_COUNTRY_CODE" + syslog $LOG_INFO "Loading rs91x modules with COEX=$COEX_MODE and Country=$COUNTRY_CODE" /usr/sbin/rs9113_load_modules.sh $CONFIG RETVAL=$? if [ $RETVAL -eq 0 ] ; then |