map-agent: map_genconfig: fix return of is_qualcomm()

This commit is contained in:
Jakob Olsson 2023-11-29 11:30:49 +01:00
parent 9c6f6acf6c
commit 2bbe7b1eef

View file

@ -19,7 +19,7 @@ is_broadcom() {
}
is_qualcomm() {
[ -d /sys/module/ath12k ] || return 0
[ -d /sys/module/ath12k ] && return 0
return 1
}