]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ath10k: use the right length of "background"
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Sat, 29 Oct 2016 11:17:37 +0000 (13:17 +0200)
committerKalle Valo <kvalo@qca.qualcomm.com>
Tue, 15 Nov 2016 15:07:36 +0000 (17:07 +0200)
The word "background" contains 10 characters so the third argument of
strncmp() need to be 10 in order to match this prefix correctly.

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Fixes: 855aed1220d2 ("ath10k: add spectral scan feature")
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/spectral.c

index 7d9b0da1b010a69bf267fb449852a4e4ab282c9d..2ffc1fe4923b9696441b4411428ba5548a231783 100644 (file)
@@ -338,7 +338,7 @@ static ssize_t write_file_spec_scan_ctl(struct file *file,
                } else {
                        res = -EINVAL;
                }
-       } else if (strncmp("background", buf, 9) == 0) {
+       } else if (strncmp("background", buf, 10) == 0) {
                res = ath10k_spectral_scan_config(ar, SPECTRAL_BACKGROUND);
        } else if (strncmp("manual", buf, 6) == 0) {
                res = ath10k_spectral_scan_config(ar, SPECTRAL_MANUAL);