[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 3/9] hw/net/xilinx_axienet: Remove unncessary cast
From: |
Edgar E. Iglesias |
Subject: |
[PATCH v1 3/9] hw/net/xilinx_axienet: Remove unncessary cast |
Date: |
Thu, 30 Apr 2020 18:24:33 +0200 |
From: "Edgar E. Iglesias" <address@hidden>
Remove unncessary cast, buf is already uint8_t *.
No functional change.
Signed-off-by: Edgar E. Iglesias <address@hidden>
---
hw/net/xilinx_axienet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/net/xilinx_axienet.c b/hw/net/xilinx_axienet.c
index 84073753d7..c8dfcda3ee 100644
--- a/hw/net/xilinx_axienet.c
+++ b/hw/net/xilinx_axienet.c
@@ -918,7 +918,7 @@ xilinx_axienet_data_stream_push(StreamSlave *obj, uint8_t
*buf, size_t size)
uint16_t csum;
tmp_csum = net_checksum_add(size - start_off,
- (uint8_t *)buf + start_off);
+ buf + start_off);
/* Accumulate the seed. */
tmp_csum += s->hdr[2] & 0xffff;
--
2.20.1
- [PATCH v1 0/9] hw/core: stream: Add end-of-packet flag, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 1/9] hw/net/xilinx_axienet: Auto-clear PHY Autoneg, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 2/9] hw/net/xilinx_axienet: Cleanup stream->push assignment, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 3/9] hw/net/xilinx_axienet: Remove unncessary cast,
Edgar E. Iglesias <=
- [PATCH v1 4/9] hw/dma/xilinx_axidma: Add DMA memory-region property, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 5/9] hw/core: stream: Add an end-of-packet flag, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 6/9] hw/net/xilinx_axienet: Handle fragmented packets from DMA, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 7/9] hw/dma/xilinx_axidma: mm2s: Stream descriptor by descriptor, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 8/9] hw/dma/xilinx_axidma: s2mm: Support stream fragments, Edgar E. Iglesias, 2020/04/30
- [PATCH v1 9/9] MAINTAINERS: Add myself as streams maintainer, Edgar E. Iglesias, 2020/04/30