[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1269065248-10575-1-git-send-email-opensolarisdev@gmail.com>
Date: Sat, 20 Mar 2010 02:07:28 -0400
From: Vikram Dhillon <opensolarisdev@...il.com>
To: gregkh@...e.de
Cc: wfp5p@...ginia.edu, npalix@...u.dk, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Vikram Dhillon <opensolarisdev@...il.com>
Subject: [PATCH 3/3] Staging: hv: NetVsc.c: Fixed a spacing issue
Fixed spacing issues in 2 pointers.
Signed-off-by: Vikram Dhillon <opensolarisdev@...il.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 1c717f9..e57b70f 100644
--- a/drivers/staging/hv/NetVsc.c
+++ b/drivers/staging/hv/NetVsc.c
@@ -1086,7 +1086,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 */
@@ -1102,7 +1102,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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists