From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0D6F01A5A3 for ; Mon, 9 Oct 2023 13:20:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="qK6sJocA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C6FEC433C8; Mon, 9 Oct 2023 13:20:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696857632; bh=5iSrYpB9lS1D0u0QCwhaKELnIA1Hyp9vjJl5QfYdKks=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qK6sJocAdW166h0fa8wO+Q9RBcEujbS3AnYG1aRfzYzo3u4l8ISogyl2Ko7HVtiyj x7W00ii/21cjNsA7xDuF2Xw9KuFrDXnv6UtOxw1d4fiMa5+6cZWPMOQzFU0/FnBfJP t61RF9Zem4aZ/v87f66qqcWodJIQ2P0FCwxm1zpQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Stephen Rothwell , Johannes Berg , Sasha Levin Subject: [PATCH 6.1 081/162] wifi: cfg80211: add missing kernel-doc for cqm_rssi_work Date: Mon, 9 Oct 2023 15:01:02 +0200 Message-ID: <20231009130125.149612418@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231009130122.946357448@linuxfoundation.org> References: <20231009130122.946357448@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johannes Berg [ Upstream commit d1383077c225ceb87ac7a3b56b2c505193f77ed7 ] As reported by Stephen, I neglected to add the kernel-doc for the new struct member. Fix that. Reported-by: Stephen Rothwell Fixes: 37c20b2effe9 ("wifi: cfg80211: fix cqm_config access race") Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- include/net/cfg80211.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index ab64bb94c92fd..7a6c3059d50b5 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -5805,6 +5805,7 @@ void wiphy_delayed_work_cancel(struct wiphy *wiphy, * @event_lock: (private) lock for event list * @owner_nlportid: (private) owner socket port ID * @nl_owner_dead: (private) owner socket went away + * @cqm_rssi_work: (private) CQM RSSI reporting work * @cqm_config: (private) nl80211 RSSI monitor state * @pmsr_list: (private) peer measurement requests * @pmsr_lock: (private) peer measurements requests/results lock -- 2.40.1