From patchwork Tue Dec 29 03:23:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 354163 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9FF02C433DB for ; Tue, 29 Dec 2020 03:25:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6D726207C5 for ; Tue, 29 Dec 2020 03:25:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726671AbgL2DYr (ORCPT ); Mon, 28 Dec 2020 22:24:47 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40982 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726434AbgL2DYq (ORCPT ); Mon, 28 Dec 2020 22:24:46 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F2F0C0613D6; Mon, 28 Dec 2020 19:24:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:In-Reply-To:References; bh=Dezo73rP7nIDR3FlycJPSv87VABYoNgs4MDYbOjeNAw=; b=lyrGmh2xrriItbi00TkalkZq48 u4B+LYEF7jVeG4759ehvKikpvFjYt2LgqXwaobO9EqnI33htSdy1vkX6KXGCZH5RmY6CSj/yF4WPw +12X1esbuGxy79kbGPuKd5vNtQ8cpjBKAoxfBlhR2q8qUpuUED+HzwS+vPzY5qTGGDgitZYWE+GHT G6tK2Py1GsysamKpldhNoK91myYaQR2khyYGVORtTQgSaSwKAc0oS/DxKPzBJUc0hBUqJQ74rYcMF nYHJ3wNrhIIsitnOwX6wCAV3oCeobqER6a8pm7A6mvhp20pJlyUPDmZzGBaArq40OQSNaypcPHE3v l/1buqwA==; Received: from [2601:1c0:6280:3f0::2c43] (helo=smtpauth.infradead.org) by casper.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1ku5c9-0007Z2-Te; Tue, 29 Dec 2020 03:24:04 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Johannes Berg , linux-wireless@vger.kernel.org, Kalle Valo , Carl Huang Subject: [PATCH] wireless/cfg80211: fix multiple kernel-doc build warnings Date: Mon, 28 Dec 2020 19:23:55 -0800 Message-Id: <20201229032355.29060-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Fix 19 warnings like this: ../include/net/cfg80211.h:1759: warning: Cannot understand * @struct cfg80211_sar_chan_ranges - sar frequency ranges Fixes: 6bdb68cef7bf ("nl80211: add common API to configure SAR power limitations") Signed-off-by: Randy Dunlap Cc: Johannes Berg Cc: linux-wireless@vger.kernel.org Cc: Kalle Valo Cc: Carl Huang --- include/net/cfg80211.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-511-rc1.orig/include/net/cfg80211.h +++ lnx-511-rc1/include/net/cfg80211.h @@ -1756,7 +1756,7 @@ struct cfg80211_sar_specs { /** - * @struct cfg80211_sar_chan_ranges - sar frequency ranges + * struct cfg80211_sar_chan_ranges - sar frequency ranges * @start_freq: start range edge frequency * @end_freq: end range edge frequency */