From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1034758AbcIWNus (ORCPT ); Fri, 23 Sep 2016 09:50:48 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:35224 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1034605AbcIWNpj (ORCPT ); Fri, 23 Sep 2016 09:45:39 -0400 From: Sergio Paracuellos To: gregkh@linuxfoundation.org Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH 06/20] staging: wlan-ng: avoid new typedef: p80211pstr6_t Date: Fri, 23 Sep 2016 15:45:23 +0200 Message-Id: <1474638337-15399-8-git-send-email-sergio.paracuellos@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1474638337-15399-1-git-send-email-sergio.paracuellos@gmail.com> References: <1474638337-15399-1-git-send-email-sergio.paracuellos@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch fixes the following checkpatch.pl warning in p80211types.h: WARNING: do not add new typedefs It applies for typedef p80211pstr6_t Signed-off-by: Sergio Paracuellos --- drivers/staging/wlan-ng/p80211types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211types.h b/drivers/staging/wlan-ng/p80211types.h index edf44c3..892e1b7 100644 --- a/drivers/staging/wlan-ng/p80211types.h +++ b/drivers/staging/wlan-ng/p80211types.h @@ -231,10 +231,10 @@ struct p80211pstr255 { } __packed; /* pascal string for macaddress and bssid */ -typedef struct p80211pstr6 { +struct p80211pstr6 { u8 len; u8 data[MAXLEN_PSTR6]; -} __packed p80211pstr6_t; +} __packed; /* pascal string for channel list */ typedef struct p80211pstr14 { @@ -282,7 +282,7 @@ struct p80211pstr255 { u32 did; u16 status; u16 len; - p80211pstr6_t data; + struct p80211pstr6 data; } __packed p80211item_pstr6_t; /* message data item for OCTETSTR, DISPLAYSTR */ -- 1.9.1