From nobody Fri May 17 02:03:11 2024 Received: from mail.nfschina.com (unknown [42.101.60.195]) by smtp.subspace.kernel.org (Postfix) with SMTP id B02E071745; Wed, 17 Apr 2024 08:18:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=42.101.60.195 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713341939; cv=none; b=NzqHiDfV08W0qCrzVK2GGmcdW+ACZs1qJP8jBFffSikvVjbRclLOgGy1PPKuNLOFowoeXCYuJ8aiSRPOhEIa6NwEGHrZyvw5gGt1fX6LQLns0AuQPM6aUjhydgr2aSnv54ZEowVKm2oJV59jKNM4Dkqjo9YtOeILyX10+r8ksZ4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713341939; c=relaxed/simple; bh=8L2XQ9HgTbiAkbBWhPJyZLU4dy7T5PQXBLD4gXNSed8=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=IIkCllXTBuqjODqthJ/X1GTj/SaGPNEQIPjHboR+fM0gWSA/uFbbxPQg6wX8KtD18O8pUIxzZbaOlibx6t0rhc8RdSKB1BVCch+hEmNZmlhMuotHGzyf0WdoV1meYiLm+SREXRoMMJTMgZNykv9GTFlBO1a9zLQkxbOxL1CrMfc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=nfschina.com; spf=pass smtp.mailfrom=nfschina.com; arc=none smtp.client-ip=42.101.60.195 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=nfschina.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=nfschina.com Received: from localhost.localdomain (unknown [180.167.10.98]) by mail.nfschina.com (Maildata Gateway V2.8.8) with ESMTPSA id 5BF316061479A; Wed, 17 Apr 2024 16:18:46 +0800 (CST) X-MD-Sfrom: suhui@nfschina.com X-MD-SrcIP: 180.167.10.98 From: Su Hui To: kvalo@kernel.org, jjohnson@kernel.org, nathan@kernel.org, ndesaulniers@google.com, morbo@google.com, justinstitt@google.com Cc: Su Hui , c_mkenna@qti.qualcomm.com, linux-wireless@vger.kernel.org, ath10k@lists.infradead.org, linux-kernel@vger.kernel.org, llvm@lists.linux.dev, kernel-janitors@vger.kernel.org Subject: [PATCH wireless] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Date: Wed, 17 Apr 2024 16:17:37 +0800 Message-Id: <20240417081736.2226586-1-suhui@nfschina.com> X-Mailer: git-send-email 2.30.2 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Clang Static Checker (scan-build) Warning: drivers/net/wireless/ath/ath10k/debugfs_sta.c:line 429, column 3 Value stored to 'ret' is never read. Return 'ret' rather than 'count' when 'ret' stores an error code. By the way, remove some useless code. Fixes: ee8b08a1be82 ("ath10k: add debugfs support to get per peer tids log = via tracing") Signed-off-by: Su Hui --- drivers/net/wireless/ath/ath10k/debugfs_sta.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/debugfs_sta.c b/drivers/net/wi= reless/ath/ath10k/debugfs_sta.c index 394bf3c32abf..5525dabe390a 100644 --- a/drivers/net/wireless/ath/ath10k/debugfs_sta.c +++ b/drivers/net/wireless/ath/ath10k/debugfs_sta.c @@ -415,7 +415,7 @@ ath10k_dbg_sta_write_peer_debug_trigger(struct file *fi= le, struct ath10k_sta *arsta =3D (struct ath10k_sta *)sta->drv_priv; struct ath10k *ar =3D arsta->arvif->ar; u8 peer_debug_trigger; - int ret; + int ret =3D 0; =20 if (kstrtou8_from_user(user_buf, count, 0, &peer_debug_trigger)) return -EINVAL; @@ -432,14 +432,12 @@ ath10k_dbg_sta_write_peer_debug_trigger(struct file *= file, =20 ret =3D ath10k_wmi_peer_set_param(ar, arsta->arvif->vdev_id, sta->addr, ar->wmi.peer_param->debug, peer_debug_trigger); - if (ret) { + if (ret) ath10k_warn(ar, "failed to set param to trigger peer tid logs for statio= n ret: %d\n", ret); - goto out; - } out: mutex_unlock(&ar->conf_mutex); - return count; + return ret ?: count; } =20 static const struct file_operations fops_peer_debug_trigger =3D { --=20 2.30.2