From patchwork Thu Jun 23 10:09:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 584862 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 27385C43334 for ; Thu, 23 Jun 2022 10:10:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231352AbiFWKKA (ORCPT ); Thu, 23 Jun 2022 06:10:00 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229723AbiFWKJ6 (ORCPT ); Thu, 23 Jun 2022 06:09:58 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D396C49C8E for ; Thu, 23 Jun 2022 03:09:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Content-Type:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-To:Resent-Cc: Resent-Message-ID:In-Reply-To:References; bh=9iYUUrOLnyBqrO7ZKizWVfemZsTZXipW2Vvq/7tMejc=; t=1655978997; x=1657188597; b=lmVr0m5aiA9aiImDzvUjR+2N2quCQ84DPSLvQCylOil2ueEyUITaT6p+JhgK13cQEeY+busMqAz QuI5grYgI72acOaoBiYh/cYtsG9f0qu7csCdJrSZIXmcEKMooD/Y6/Zgj0hlVnnhqRjEIsb/+bxpt jjAewGJdkSlQzm2uX/5AwNPPLil/On7DGJdh4xd6nbFOdAxkq9VN74FzB5xuIFgYWByjTvBG1+XJU CKev6dw24sybYMJur6yHVM9KSBrXXWGL+YB9hH106HXnG5wH/P1E9SkU8hz8f9sdBZOF9eKxaWmIo duRkGEdgNhlGzfPqhdKFJkAPgxhPxoLVNKiA==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.95) (envelope-from ) id 1o4JmX-00Dhip-3y; Thu, 23 Jun 2022 12:09:49 +0200 From: Johannes Berg To: linux-wireless@vger.kernel.org Cc: Johannes Berg , Stephen Rothwell Subject: [PATCH] cfg80211: fix kernel-doc Date: Thu, 23 Jun 2022 12:09:46 +0200 Message-Id: <20220623120945.9b26f55a4b43.Ib1ba631c5c7adf7ad2995ac2404455f4114df0ae@changeid> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: Johannes Berg Some things are now removed, and some are not documented, but mark all the new things as private since drivers shouldn't be using them anyway. Reported-by: Stephen Rothwell Signed-off-by: Johannes Berg --- include/net/cfg80211.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 996782c44838..44f185a2f424 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -5563,18 +5563,8 @@ static inline void wiphy_unlock(struct wiphy *wiphy) * @netdev: (private) Used to reference back to the netdev, may be %NULL * @identifier: (private) Identifier used in nl80211 to identify this * wireless device if it has no netdev - * @connected_addr: (private) BSSID or AP MLD address if connected * @connected: indicates if connected or not (STA mode) - * @current_bss: (private) Used by the internal configuration code - * @chandef: (private) Used by the internal configuration code to track - * the user-set channel definition. - * @preset_chandef: (private) Used by the internal configuration code to - * track the channel to be used for AP later * @bssid: (private) Used by the internal configuration code - * @ssid: (private) Used by the internal configuration code - * @ssid_len: (private) Used by the internal configuration code - * @mesh_id_len: (private) Used by the internal configuration code - * @mesh_id_up_len: (private) Used by the internal configuration code * @wext: (private) Used by the internal wireless extensions compat code * @wext.ibss: (private) IBSS data part of wext handling * @wext.connect: (private) connection handling data @@ -5695,6 +5685,7 @@ struct wireless_dev { unsigned long unprot_beacon_reported; + /* private: */ union { struct { u8 connected_addr[ETH_ALEN] __aligned(2);