Commit cb0e3e61 authored by Barry Song's avatar Barry Song Committed by David S. Miller

net: hns3: pointer type of buffer should be void

Move the type of buffer address from unsigned char to void
Signed-off-by: default avatarBarry Song <song.bao.hua@hisilicon.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 674a1357
......@@ -3070,7 +3070,7 @@ static int hns3_handle_rx_bd(struct hns3_enet_ring *ring)
return -ENXIO;
if (!skb)
ring->va = (unsigned char *)desc_cb->buf + desc_cb->page_offset;
ring->va = desc_cb->buf + desc_cb->page_offset;
/* Prefetch first cache line of first page
* Idea is to cache few bytes of the header of the packet. Our L1 Cache
......
......@@ -407,7 +407,7 @@ struct hns3_enet_ring {
u32 pull_len; /* head length for current packet */
u32 frag_num;
unsigned char *va; /* first buffer address for current packet */
void *va; /* first buffer address for current packet */
u32 flag; /* ring attribute */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment