From patchwork Tue Nov 4 12:49:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rostislav Lisovy X-Patchwork-Id: 5227361 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 BED4BC11AC for ; Tue, 4 Nov 2014 12:49:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DD3E02013A for ; Tue, 4 Nov 2014 12:49:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1D8AA20115 for ; Tue, 4 Nov 2014 12:49:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753533AbaKDMtV (ORCPT ); Tue, 4 Nov 2014 07:49:21 -0500 Received: from mail-wg0-f50.google.com ([74.125.82.50]:65314 "EHLO mail-wg0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753401AbaKDMtT (ORCPT ); Tue, 4 Nov 2014 07:49:19 -0500 Received: by mail-wg0-f50.google.com with SMTP id z12so13287420wgg.23 for ; Tue, 04 Nov 2014 04:49:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=tT47E02ZqygMRQyhMVB1ZxXk/x5rdB4RpeuNhpNU7RU=; b=gfWh+z6Zzzfhjfo2ZzJzUwGAwaBT6TCMtUtgv1Eo1zTzN8OZ0KG6YdD8VKYlYpjiHy jZ6zMIJ12/HpcuiEFM7ovGbjDgv/qkrNvt8kQfUYkdCwdQ1TyqxM+kfokAeQrk1/jZmu dGLjGiuq3a15OmAWL5FfWD1fmTXP5Kpd1FT4zVGgOPMyRtUfToI8SasJhUm30zBxWXi2 i2nUr0pRkP0dpVVpYMvK7psQD8nEPXYuORwQMtUerFCwNOjJ1QZuuXVA1ofQgwzbYjFB r1V7TYTAAlOLETj0xzTOXj4CN8DE4q2JNKDTUFz0YE6/VUxcZC9j89JUFdZ2vV2Afmch u+Qg== X-Received: by 10.180.210.167 with SMTP id mv7mr24086075wic.15.1415105357446; Tue, 04 Nov 2014 04:49:17 -0800 (PST) Received: from c2c-vostro1.felk.cvut.cz ([147.32.86.112]) by mx.google.com with ESMTPSA id md11sm12161732wic.15.2014.11.04.04.49.16 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 04 Nov 2014 04:49:16 -0800 (PST) From: Rostislav Lisovy X-Google-Original-From: Rostislav Lisovy To: Johannes Berg , linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org Cc: lisovy@gmail.com, fengguang.wu@intel.com, Rostislav Lisovy Subject: [PATCH] cfg80211: Move join/leave_ocb comments to be in the correct order Date: Tue, 4 Nov 2014 13:49:12 +0100 Message-Id: <1415105352-4295-1-git-send-email-rostislav.lisovy@fel.cvut.cz> X-Mailer: git-send-email 2.0.0.rc4 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 Use the same ordering in the comments section as it is in the structure below. Signed-off-by: Rostislav Lisovy --- include/net/cfg80211.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 5c3acd0..af0ef26 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -2182,6 +2182,11 @@ struct cfg80211_qos_map { * @leave_mesh: leave the current mesh network * (invoked with the wireless_dev mutex held) * + * @join_ocb: join the OCB network with the specified parameters + * (invoked with the wireless_dev mutex held) + * @leave_ocb: leave the current OCB network + * (invoked with the wireless_dev mutex held) + * * @get_mesh_config: Get the current mesh configuration * * @update_mesh_config: Update mesh parameters on a running mesh. @@ -2362,11 +2367,6 @@ struct cfg80211_qos_map { * with the peer followed by immediate teardown when the addition is later * rejected) * @del_tx_ts: remove an existing TX TS - * - * @join_ocb: join the OCB network with the specified parameters - * (invoked with the wireless_dev mutex held) - * @leave_ocb: leave the current OCB network - * (invoked with the wireless_dev mutex held) */ struct cfg80211_ops { int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);