]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
netvsc: remove unnecessary cast of void pointer
authorstephen hemminger <stephen@networkplumber.org>
Thu, 10 Aug 2017 00:46:09 +0000 (17:46 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 11 Aug 2017 20:59:43 +0000 (13:59 -0700)
Assignment to a typed pointer is sufficient in C.
No cast is needed.

Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hyperv/netvsc_drv.c

index 3219d2e8918f0b5028c0b548ab7eb73f4c8133c8..9f89de17b5fa93692935401ffba04bde3eea3e94 100644 (file)
@@ -523,9 +523,9 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
 
                rndis_msg_size += NDIS_VLAN_PPI_SIZE;
                ppi = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE,
-                                       IEEE_8021Q_INFO);
-               vlan = (struct ndis_pkt_8021q_info *)((void *)ppi +
-                                               ppi->ppi_offset);
+                                   IEEE_8021Q_INFO);
+
+               vlan = (void *)ppi + ppi->ppi_offset;
                vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK;
                vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >>
                                VLAN_PRIO_SHIFT;
@@ -538,8 +538,7 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
                ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE,
                                    TCP_LARGESEND_PKTINFO);
 
-               lso_info = (struct ndis_tcp_lso_info *)((void *)ppi +
-                                                       ppi->ppi_offset);
+               lso_info = (void *)ppi + ppi->ppi_offset;
 
                lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE;
                if (skb->protocol == htons(ETH_P_IP)) {