mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/12] Avoid CamelCases in hfa384x.h
@ 2016-10-19 15:52 Sergio Paracuellos
  2016-10-19 15:52 ` [PATCH 01/12] staging: wlan-ng: avoid CamelCase: HFA384x_RID_CNFAPBCNint Sergio Paracuellos
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: Sergio Paracuellos @ 2016-10-19 15:52 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-kernel

This patchset fix CamelCases in hfa384x.h header file.

This file is free of CamelCases now.

Sergio Paracuellos (12):
  staging: wlan-ng: avoid CamelCase: HFA384x_RID_CNFAPBCNint
  staging: wlan-ng: avoid CamelCase: hfa384x_HostScanRequest_data
  staging: wlan-ng: avoid CamelCase: hfa384x_WPAData
  staging: wlan-ng: avoid CamelCase in fields of struct
    hfa384x_dbmcommsquality
  staging: wlan-ng: avoid CamelCase: hfa384x_CommTallies16
  staging: wlan-ng: avoid CamelCase: hfa384x_ChInfoResult
  staging: wlan-ng: avoid CamelCase: hfa384x_HScanResultSub
  staging: wlan-ng: avoid CamelCase: hfa384x_HScanResult
  staging: wlan-ng: avoid CamelCase: hfa384x_LinkStatus
  staging: wlan-ng: avoid CamelCase: hfa384x_AuthRequest
  staging: wlan-ng: avoid CamelCase: hfa384x_PSUserCount
  staging: wlan-ng: avoid CamelCase: hfa384x_KeyIDChanged

 drivers/staging/wlan-ng/hfa384x.h    | 50 ++++++++++++++++++------------------
 drivers/staging/wlan-ng/prism2mgmt.c | 12 ++++-----
 drivers/staging/wlan-ng/prism2mib.c  |  2 +-
 3 files changed, 32 insertions(+), 32 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH 0/5] Replace data type declarations with variables of  same types in several source files.
@ 2016-10-10 14:02 Sergio Paracuellos
  2016-10-10 14:02 ` [PATCH 4/5] staging: wlan-ng: Replace data type declaration with variable of same type in p80211netdev.c Sergio Paracuellos
  0 siblings, 1 reply; 19+ messages in thread
From: Sergio Paracuellos @ 2016-10-10 14:02 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-kernel

This patch series replaces several sizeof(struct XXX) stuff in favour 
of sizeof(var) which is the preferred one.

Sergio Paracuellos (5):
  staging: wlan-ng: Replace data type declaration with variable of same
    type in cfg80211.c
  staging: wlan-ng: Replace data type declaration with variable of same
    type in hfa384x_usb.c
  staging: wlan-ng: Replace data type declaration with variable of same
    type in p80211conv.c
  staging: wlan-ng: Replace data type declaration with variable of same
    type in p80211netdev.c
  staging: wlan-ng: Replace data type declaration with variable of same
    type in prism2sta.c

 drivers/staging/wlan-ng/cfg80211.c     |  2 +-
 drivers/staging/wlan-ng/hfa384x_usb.c  |  2 +-
 drivers/staging/wlan-ng/p80211conv.c   |  2 +-
 drivers/staging/wlan-ng/p80211netdev.c | 12 ++++++------
 drivers/staging/wlan-ng/prism2sta.c    |  6 +++---
 5 files changed, 12 insertions(+), 12 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2016-10-19 15:58 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-19 15:52 [PATCH 00/12] Avoid CamelCases in hfa384x.h Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 01/12] staging: wlan-ng: avoid CamelCase: HFA384x_RID_CNFAPBCNint Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 1/5] staging: wlan-ng: Replace data type declaration with variable of same type in cfg80211.c Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 02/12] staging: wlan-ng: avoid CamelCase: hfa384x_HostScanRequest_data Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 2/5] staging: wlan-ng: Replace data type declaration with variable of same type in hfa384x_usb.c Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 03/12] staging: wlan-ng: avoid CamelCase: hfa384x_WPAData Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 3/5] staging: wlan-ng: Replace data type declaration with variable of same type in p80211conv.c Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 04/12] staging: wlan-ng: avoid CamelCase in fields of struct hfa384x_dbmcommsquality Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 4/5] staging: wlan-ng: Replace data type declaration with variable of same type in p80211netdev.c Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 05/12] staging: wlan-ng: avoid CamelCase: hfa384x_CommTallies16 Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 5/5] staging: wlan-ng: Replace data type declaration with variable of same type in prism2sta.c Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 06/12] staging: wlan-ng: avoid CamelCase: hfa384x_ChInfoResult Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 07/12] staging: wlan-ng: avoid CamelCase: hfa384x_HScanResultSub Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 08/12] staging: wlan-ng: avoid CamelCase: hfa384x_HScanResult Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 09/12] staging: wlan-ng: avoid CamelCase: hfa384x_LinkStatus Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 10/12] staging: wlan-ng: avoid CamelCase: hfa384x_AuthRequest Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 11/12] staging: wlan-ng: avoid CamelCase: hfa384x_PSUserCount Sergio Paracuellos
2016-10-19 15:52 ` [PATCH 12/12] staging: wlan-ng: avoid CamelCase: hfa384x_KeyIDChanged Sergio Paracuellos
  -- strict thread matches above, loose matches on Subject: below --
2016-10-10 14:02 [PATCH 0/5] Replace data type declarations with variables of same types in several source files Sergio Paracuellos
2016-10-10 14:02 ` [PATCH 4/5] staging: wlan-ng: Replace data type declaration with variable of same type in p80211netdev.c Sergio Paracuellos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®