The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Akshay Joshi <me@akshayjoshi.com>
To: Pavel Machek <pavel@ucw.cz>, Greg Kroah-Hartman <gregkh@suse.de>,
	Akshay Joshi <me@akshayjoshi.com>,
	Pekka Enberg <penberg@kernel.org>,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: [PATCH 6/9] Staging: Winbond: Remove spacing issues related to pointers.
Date: Mon, 15 Aug 2011 20:24:32 -0400	[thread overview]
Message-ID: <1313454275-5604-6-git-send-email-me@akshayjoshi.com> (raw)
In-Reply-To: <1313454275-5604-1-git-send-email-me@akshayjoshi.com>

This patch ensures that spacing around pointers is consistent and
follows the kernel coding style.

Signed-off-by: Akshay Joshi <me@akshayjoshi.com>
---
 drivers/staging/winbond/wb35rx_f.h |    4 ++--
 drivers/staging/winbond/wb35rx_s.h |    4 ++--
 drivers/staging/winbond/wb35tx_s.h |    4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/winbond/wb35rx_f.h b/drivers/staging/winbond/wb35rx_f.h
index 4efc790..8f51136 100644
--- a/drivers/staging/winbond/wb35rx_f.h
+++ b/drivers/staging/winbond/wb35rx_f.h
@@ -8,8 +8,8 @@
  * Interface function declare
  */
 unsigned char		Wb35Rx_initial(struct hw_data *pHwData);
-void		Wb35Rx_destroy(struct hw_data * pHwData);
-void		Wb35Rx_stop(struct hw_data * pHwData);
+void		Wb35Rx_destroy(struct hw_data *pHwData);
+void		Wb35Rx_stop(struct hw_data *pHwData);
 void		Wb35Rx_start(struct ieee80211_hw *hw);
 
 #endif
diff --git a/drivers/staging/winbond/wb35rx_s.h b/drivers/staging/winbond/wb35rx_s.h
index 949e4f5..e99475db 100644
--- a/drivers/staging/winbond/wb35rx_s.h
+++ b/drivers/staging/winbond/wb35rx_s.h
@@ -35,9 +35,9 @@ struct wb35_rx {
 	u32	Rx3UrbCancel;
 
 	u32	LastR1; /* For RSSI reporting */
-	struct urb *				RxUrb;
+	struct urb *RxUrb;
 	u32		Ep3ErrorCount2; /* 20060625.1 Usbd for Rx DMA error count */
 
 	int		EP3VM_status;
-	u8 *	pDRx;
+	u8 *pDRx;
 };
diff --git a/drivers/staging/winbond/wb35tx_s.h b/drivers/staging/winbond/wb35tx_s.h
index 83b4b0f..fda18d6 100644
--- a/drivers/staging/winbond/wb35tx_s.h
+++ b/drivers/staging/winbond/wb35tx_s.h
@@ -31,8 +31,8 @@ struct wb35_tx {
 	u32	    EP4vm_state; /* for EP4vm state */
 	u32	    tx_halt; /* Stopping VM */
 
-	struct urb *				Tx4Urb;
-	struct urb *				Tx2Urb;
+	struct urb *Tx4Urb;
+	struct urb *Tx2Urb;
 
 	int		EP2VM_status;
 	int		EP4VM_status;
-- 
1.7.5.4


  parent reply	other threads:[~2011-08-16  0:25 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-16  0:24 [PATCH 1/9] Staging: Winbond: Fix case statements in wb35reg.c Akshay Joshi
2011-08-16  0:24 ` [PATCH 2/9] Staging: Winbond: Fix pointer style in wb35tx.c Akshay Joshi
2011-08-16  5:41   ` Pekka Enberg
2011-08-16  0:24 ` [PATCH 3/9] Staging: Winbond: Fix space issues " Akshay Joshi
2011-08-16  5:42   ` Pekka Enberg
2011-08-16  0:24 ` [PATCH 4/9] Staging: Winbond: Convert C99 style comments in Winbond Akshay Joshi
2011-08-16  5:42   ` Pekka Enberg
2011-08-16 19:56   ` Gábor Stefanik
2011-08-16 21:24     ` Pekka Enberg
2011-08-16 21:38       ` Gábor Stefanik
2011-08-16 21:40         ` Gábor Stefanik
2011-08-17  5:41         ` Pekka Enberg
2011-08-17 19:15           ` Akshay Joshi
2011-08-17 19:17             ` Akshay Joshi
2011-08-17 21:08               ` Dan Carpenter
2011-08-16 21:43       ` Dan Carpenter
2011-08-17  0:19         ` Akshay Joshi
2011-08-16  0:24 ` [PATCH 5/9] Staging: Winbond: Fix spacing issues for spaces before tabs Akshay Joshi
2011-08-16  5:43   ` Pekka Enberg
2011-08-16  0:24 ` Akshay Joshi [this message]
2011-08-16  5:45   ` [PATCH 6/9] Staging: Winbond: Remove spacing issues related to pointers Pekka Enberg
2011-08-16  0:24 ` [PATCH 7/9] Staging: Winbond: Fix parentheses in returns Akshay Joshi
2011-08-16  5:45   ` Pekka Enberg
2011-08-16  0:24 ` [PATCH 8/9] Staging: Winbond: Use tabs instead of spaces for indents Akshay Joshi
2011-08-16  5:46   ` Pekka Enberg
2011-08-16  0:24 ` [PATCH 9/9] Staging: Winbond: Reposition a curly bracket Akshay Joshi
2011-08-16  5:46   ` Pekka Enberg
2011-08-16  5:41 ` [PATCH 1/9] Staging: Winbond: Fix case statements in wb35reg.c Pekka Enberg
2011-08-23 22:27 ` Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1313454275-5604-6-git-send-email-me@akshayjoshi.com \
    --to=me@akshayjoshi.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pavel@ucw.cz \
    --cc=penberg@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox