wifi: ray_cs: Remove unnecessary (void*) conversions
authorWu Yunchuan <yunchuan@nfschina.com>
Fri, 20 Oct 2023 09:34:31 +0000 (17:34 +0800)
committerKalle Valo <kvalo@kernel.org>
Wed, 25 Oct 2023 17:44:40 +0000 (20:44 +0300)
No need cast (void *) to (struct net_device *).

Signed-off-by: Wu Yunchuan <yunchuan@nfschina.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20231020093432.214001-1-yunchuan@nfschina.com
drivers/net/wireless/legacy/ray_cs.c

index 8ace797ce951c501621015f0b93a426c0e1dc2f1..c95a79e01cd0f7a2941c90dfaa3f8fe9797229f8 100644 (file)
@@ -348,7 +348,7 @@ static int ray_config(struct pcmcia_device *link)
 {
        int ret = 0;
        int i;
-       struct net_device *dev = (struct net_device *)link->priv;
+       struct net_device *dev = link->priv;
        ray_dev_t *local = netdev_priv(dev);
 
        dev_dbg(&link->dev, "ray_config\n");
@@ -1830,7 +1830,7 @@ static void set_multicast_list(struct net_device *dev)
 =============================================================================*/
 static irqreturn_t ray_interrupt(int irq, void *dev_id)
 {
-       struct net_device *dev = (struct net_device *)dev_id;
+       struct net_device *dev = dev_id;
        struct pcmcia_device *link;
        ray_dev_t *local;
        struct ccs __iomem *pccs;
@@ -2567,7 +2567,7 @@ static int ray_cs_proc_show(struct seq_file *m, void *v)
        link = this_device;
        if (!link)
                return 0;
-       dev = (struct net_device *)link->priv;
+       dev = link->priv;
        if (!dev)
                return 0;
        local = netdev_priv(dev);