Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eed4721f authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo
Browse files

ath10k: remove redundant check of len with buf_len



The check of len > buf_len is redundant as len is initialized
to 0 and buf_len to 4096, so this comparison is always false.
Remove it.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 0a7d88e4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -249,9 +249,6 @@ static ssize_t ath10k_read_wmi_services(struct file *file,

	mutex_lock(&ar->conf_mutex);

	if (len > buf_len)
		len = buf_len;

	spin_lock_bh(&ar->data_lock);
	for (i = 0; i < WMI_SERVICE_MAX; i++) {
		enabled = test_bit(i, ar->wmi.svc_map);