From patchwork Fri May 2 14:39:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masanari Iida X-Patchwork-Id: 4102291 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 271B7BFF02 for ; Fri, 2 May 2014 14:40:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4E132201CE for ; Fri, 2 May 2014 14:40:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8675320353 for ; Fri, 2 May 2014 14:40:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751977AbaEBOkW (ORCPT ); Fri, 2 May 2014 10:40:22 -0400 Received: from mail-pd0-f174.google.com ([209.85.192.174]:54982 "EHLO mail-pd0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751643AbaEBOkV (ORCPT ); Fri, 2 May 2014 10:40:21 -0400 Received: by mail-pd0-f174.google.com with SMTP id w10so3631108pde.5 for ; Fri, 02 May 2014 07:40:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=j25hqB0j/o7z3sd7ctx2NHkLmrF8ehxifFH3EMD8qG4=; b=myg5AgT0ecFTT6WQUDu1tE2HVxBUvKD6Trv6zxZipdfRkcb0ltt548I+O7M5NBbz1x BZ9cXPcxHVb1eGvWrEdkcLkvjzoXQ+0miZCeyflD5fezFRPzUFcHzi+iCJrEVaDlmi72 pv8pAz7e/fMrQJYZlEUoUfQ78NZAE5ho73VziEeu1Xxmcwmnr8jV05PsQjnCh/G+13Il l2ueYNiYITdGXwtrVrqZVua0GCtYENbicq1+JPrlQyfXmxLIJjvxAy9C2/2t7XpDkXgz X/Me886uXQpb4LmQrzBxNZu6DVydSHMBvjC8TuuEd8h9OfioehMMBqs6k4deI1Q1kXKx Z5Lg== X-Received: by 10.66.122.36 with SMTP id lp4mr35142407pab.82.1399041620728; Fri, 02 May 2014 07:40:20 -0700 (PDT) Received: from masabert (i118-21-156-233.s30.a048.ap.plala.or.jp. [118.21.156.233]) by mx.google.com with ESMTPSA id ry8sm184753967pac.29.2014.05.02.07.40.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 02 May 2014 07:40:19 -0700 (PDT) Received: by masabert (Postfix, from userid 1000) id C77315FF50; Fri, 2 May 2014 23:40:14 +0900 (JST) From: Masanari Iida To: luciano.coelho@intel.com, johannes.berg@intel.com, netdev@vger.kernel.org, linux-wireless@vger.kernel.org Cc: Masanari Iida Subject: [PATCH] cfg80211/mac80211: Fix warning on make xmldocs caused by cfg80211.h Date: Fri, 2 May 2014 23:39:57 +0900 Message-Id: <1399041597-27409-2-git-send-email-standby24x7@gmail.com> X-Mailer: git-send-email 2.0.0.rc1.15.g7e76a2f In-Reply-To: <1399041597-27409-1-git-send-email-standby24x7@gmail.com> References: <1399041597-27409-1-git-send-email-standby24x7@gmail.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Following error messages caused by wrong description. Warning(include/net/cfg80211.h:461): No description found for parameter 'nl80211_iftype' Change "iftype" to "nl80211_iftype" fix the errors. Signed-off-by: Masanari Iida --- include/net/cfg80211.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 7eae46c..695c562 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -452,7 +452,7 @@ bool cfg80211_chandef_usable(struct wiphy *wiphy, * cfg80211_chandef_dfs_required - checks if radar detection is required * @wiphy: the wiphy to validate against * @chandef: the channel definition to check - * @iftype: the interface type as specified in &enum nl80211_iftype + * @nl80211_iftype: the interface type as specified in &enum nl80211_iftype * Returns: * 1 if radar detection is required, 0 if it is not, < 0 on error */