[PATCH net-next v3 01/10] net: wan: Remove unnecessary (void*) conversions

Wu Yunchuan yunchuan at nfschina.com
Tue Jul 11 11:39:21 AEST 2023


From: wuych <yunchuan at nfschina.com>

Pointer variables of void * type do not require type cast.

Signed-off-by: Wu Yunchuan <yunchuan at nfschina.com>
---
 drivers/net/wan/fsl_ucc_hdlc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wan/fsl_ucc_hdlc.c b/drivers/net/wan/fsl_ucc_hdlc.c
index 47c2ad7a3e42..91e37c3dcbee 100644
--- a/drivers/net/wan/fsl_ucc_hdlc.c
+++ b/drivers/net/wan/fsl_ucc_hdlc.c
@@ -350,7 +350,7 @@ static int uhdlc_init(struct ucc_hdlc_private *priv)
 static netdev_tx_t ucc_hdlc_tx(struct sk_buff *skb, struct net_device *dev)
 {
 	hdlc_device *hdlc = dev_to_hdlc(dev);
-	struct ucc_hdlc_private *priv = (struct ucc_hdlc_private *)hdlc->priv;
+	struct ucc_hdlc_private *priv = hdlc->priv;
 	struct qe_bd *bd;
 	u16 bd_status;
 	unsigned long flags;
-- 
2.30.2



More information about the Linuxppc-dev mailing list