Skip to content

Commit

Permalink
Staging: fix typos "man[ae]g?ment" -> "management"
Browse files Browse the repository at this point in the history
This patch was generated by running

	git grep -E -l 'man[ae]g?ment' drivers/staging | xargs -r perl -p -i -e 's/\bman[ae]g?ment\b/management/g'

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Uwe Kleine-König authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent a7cd582 commit 658ce9d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/et131x/et1310_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void ConfigMACRegs1(struct et131x_adapter *pAdapter)
/* Next lets configure the MAC Interface Control register */
writel(0, &pMac->if_ctrl.value);

/* Let's move on to setting up the mii managment configuration */
/* Let's move on to setting up the mii management configuration */
mii_mgmt_cfg.bits.reset_mii_mgmt = 0;
mii_mgmt_cfg.bits.scan_auto_incremt = 0;
mii_mgmt_cfg.bits.preamble_suppress = 0;
Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/otus/80211core/cagg.c
Original file line number Diff line number Diff line change
Expand Up @@ -2845,7 +2845,7 @@ u16_t zfAggSendAddbaRequest(zdev_t* dev, u16_t *dst, u16_t ac, u16_t up)


/*
* TBD : Maximum size of managment frame
* TBD : Maximum size of management frame
*/
if ((buf = zfwBufAllocate(dev, 1024)) == NULL)
{
Expand Down Expand Up @@ -3286,7 +3286,7 @@ u16_t zfAggSendAddbaResponse(zdev_t* dev, struct aggBaFrameParameter *bf)


/*
* TBD : Maximum size of managment frame
* TBD : Maximum size of management frame
*/
if ((buf = zfwBufAllocate(dev, 1024)) == NULL)
{
Expand Down Expand Up @@ -3439,7 +3439,7 @@ u16_t zfAggSendBar(zdev_t* dev, TID_TX tid_tx, struct aggBarControl *aggBarCon


/*
* TBD : Maximum size of managment frame
* TBD : Maximum size of management frame
*/
if ((buf = zfwBufAllocate(dev, 1024)) == NULL)
{
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/otus/80211core/cmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ void zfSendMmFrame(zdev_t* dev, u8_t frameType, u16_t* dst,
zmw_declare_for_critical_section();

zm_msg2_mm(ZM_LV_2, "Send mm frame, type=", frameType);
/* TBD : Maximum size of managment frame */
/* TBD : Maximum size of management frame */
if ((buf = zfwBufAllocate(dev, 1024)) == NULL)
{
zm_msg0_mm(ZM_LV_0, "Alloc mm buf Fail!");
Expand Down Expand Up @@ -1099,7 +1099,7 @@ void zfSendMmFrame(zdev_t* dev, u8_t frameType, u16_t* dst,
}

if ((wd->sta.capability[1] & ZM_BIT_0) == 1)
{ //spectrum managment flag enable
{ //spectrum management flag enable
offset = zfStaAddIePowerCap(dev, buf, offset);
offset = zfStaAddIeSupportCh(dev, buf, offset);
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/80211mgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* File: 80211mgr.c
*
* Purpose: Handles the 802.11 managment support functions
* Purpose: Handles the 802.11 management support functions
*
* Author: Lyndon Chen
*
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/80211mgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* File: 80211mgr.h
*
* Purpose: Defines the macros, types, and functions for dealing
* with 802.11 managment frames.
* with 802.11 management frames.
*
* Author: Lyndon Chen
*
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* File: power.c
*
* Purpose: Handles 802.11 power managment functions
* Purpose: Handles 802.11 power management functions
*
* Author: Lyndon Chen
*
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/power.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* File: power.h
*
* Purpose: Handles 802.11 power managment functions
* Purpose: Handles 802.11 power management functions
*
* Author: Lyndon Chen
*
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/vt6655/wmgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,11 @@ typedef struct tagSMgmtObject
BOOL bRxBeaconInTBTTWake;
BYTE abyPSTxMap[MAX_NODE_NUM + 1];

// managment command related
// management command related
UINT uCmdBusy;
UINT uCmdHostAPBusy;

// managment packet pool
// management packet pool
PBYTE pbyMgmtPacketPool;
BYTE byMgmtPacketPool[sizeof(STxMgmtPacket) + WLAN_A3FR_MAXLEN];

Expand Down

0 comments on commit 658ce9d

Please sign in to comment.