aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorAdam Latham <adam.latham@unisontorbay.org.uk>2010-05-15 04:38:44 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-18 17:51:08 -0400
commit973267a212a6f28c26cbb7929a7ffdd963c16861 (patch)
tree29c9a7b8009407d114de9d725d9e6e1f5ac85f59 /drivers/staging
parentcc856e61ee4ffb150ff352e3d6940978a2f819e8 (diff)
Staging: winbond: Fix for pointer name format issue in mds.c
This patch fixes the unnecessary whitespace found in pointer names in the mds.c file found by the checkpatch.pl tool Signed-off-by: Adam Latham <adam.latham@unisontorbay.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/winbond/mds.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/winbond/mds.c b/drivers/staging/winbond/mds.c
index 65063c33618d..e8320a6f59af 100644
--- a/drivers/staging/winbond/mds.c
+++ b/drivers/staging/winbond/mds.c
@@ -6,7 +6,7 @@
6#include "wblinux_f.h" 6#include "wblinux_f.h"
7 7
8unsigned char 8unsigned char
9Mds_initial(struct wbsoft_priv * adapter) 9Mds_initial(struct wbsoft_priv *adapter)
10{ 10{
11 struct wb35_mds *pMds = &adapter->Mds; 11 struct wb35_mds *pMds = &adapter->Mds;
12 12
@@ -18,7 +18,7 @@ Mds_initial(struct wbsoft_priv * adapter)
18} 18}
19 19
20void 20void
21Mds_Destroy(struct wbsoft_priv * adapter) 21Mds_Destroy(struct wbsoft_priv *adapter)
22{ 22{
23} 23}
24 24
@@ -318,7 +318,7 @@ static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *pDe
318 return Size; 318 return Size;
319} 319}
320 320
321static void Mds_HeaderCopy(struct wbsoft_priv * adapter, struct wb35_descriptor *pDes, u8 *TargetBuffer) 321static void Mds_HeaderCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *pDes, u8 *TargetBuffer)
322{ 322{
323 struct wb35_mds *pMds = &adapter->Mds; 323 struct wb35_mds *pMds = &adapter->Mds;
324 u8 *src_buffer = pDes->buffer_address[0]; /* 931130.5.g */ 324 u8 *src_buffer = pDes->buffer_address[0]; /* 931130.5.g */
@@ -414,9 +414,9 @@ static void Mds_HeaderCopy(struct wbsoft_priv * adapter, struct wb35_descriptor
414} 414}
415 415
416void 416void
417Mds_Tx(struct wbsoft_priv * adapter) 417Mds_Tx(struct wbsoft_priv *adapter)
418{ 418{
419 struct hw_data * pHwData = &adapter->sHwData; 419 struct hw_data *pHwData = &adapter->sHwData;
420 struct wb35_mds *pMds = &adapter->Mds; 420 struct wb35_mds *pMds = &adapter->Mds;
421 struct wb35_descriptor TxDes; 421 struct wb35_descriptor TxDes;
422 struct wb35_descriptor *pTxDes = &TxDes; 422 struct wb35_descriptor *pTxDes = &TxDes;
@@ -550,10 +550,10 @@ Mds_Tx(struct wbsoft_priv * adapter)
550} 550}
551 551
552void 552void
553Mds_SendComplete(struct wbsoft_priv * adapter, PT02_DESCRIPTOR pT02) 553Mds_SendComplete(struct wbsoft_priv *adapter, PT02_DESCRIPTOR pT02)
554{ 554{
555 struct wb35_mds *pMds = &adapter->Mds; 555 struct wb35_mds *pMds = &adapter->Mds;
556 struct hw_data * pHwData = &adapter->sHwData; 556 struct hw_data *pHwData = &adapter->sHwData;
557 u8 PacketId = (u8)pT02->T02_Tx_PktID; 557 u8 PacketId = (u8)pT02->T02_Tx_PktID;
558 unsigned char SendOK = true; 558 unsigned char SendOK = true;
559 u8 RetryCount, TxRate; 559 u8 RetryCount, TxRate;