public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: hv: Fix coding style errors in NetVsc.c
@ 2010-04-28 21:55 Roel Van Nyen
  2010-04-28 22:09 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Roel Van Nyen @ 2010-04-28 21:55 UTC (permalink / raw)
  To: gregkh; +Cc: hjanssen, haiyangz, linux-kernel, Roel Van Nyen

Fix coding style issues

Signed-of-by: Roel Van Nyen <roel.vannyen@gmail.com>
---
 drivers/staging/hv/NetVsc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/hv/NetVsc.c b/drivers/staging/hv/NetVsc.c
index e1ca343..f84942d 100644
--- a/drivers/staging/hv/NetVsc.c
+++ b/drivers/staging/hv/NetVsc.c
@@ -1087,7 +1087,7 @@ static void NetVscOnReceive(struct hv_device *Device,
 	}
 
 	/* Remove the 1st packet to represent the xfer page packet itself */
-	xferpagePacket = (struct xferpage_packet*)listHead.next;
+	xferpagePacket = (struct xferpage_packet *)listHead.next;
 	list_del(&xferpagePacket->ListEntry);
 
 	/* This is how much we can satisfy */
@@ -1103,7 +1103,7 @@ static void NetVscOnReceive(struct hv_device *Device,
 
 	/* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
 	for (i = 0; i < (count - 1); i++) {
-		netvscPacket = (struct hv_netvsc_packet*)listHead.next;
+		netvscPacket = (struct hv_netvsc_packet *)listHead.next;
 		list_del(&netvscPacket->ListEntry);
 
 		/* Initialize the netvsc packet */
-- 
1.6.3.3


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

end of thread, other threads:[~2010-04-28 22:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-28 21:55 [PATCH] Staging: hv: Fix coding style errors in NetVsc.c Roel Van Nyen
2010-04-28 22:09 ` Greg KH
2010-04-28 22:48   ` Roel Van Nyen

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