From: Tong Zhang Date: Sat, 30 Jul 2022 03:33:22 +0000 (-0700) Subject: staging: rtl8192u: remove unnecessary cast X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=626d28e9becadb8e9b7cc66ec93184b671edf175;p=linux.git staging: rtl8192u: remove unnecessary cast Cast is not needed when calling ieee80211_priv, so remove them. No functional change in this commit. Signed-off-by: Tong Zhang Link: https://lore.kernel.org/r/20220730033335.74153-3-ztong0001@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192u/r8192U_procfs.c b/drivers/staging/rtl8192u/r8192U_procfs.c index 69cbafceecfe3..d6f8401526c58 100644 --- a/drivers/staging/rtl8192u/r8192U_procfs.c +++ b/drivers/staging/rtl8192u/r8192U_procfs.c @@ -10,7 +10,7 @@ static struct proc_dir_entry *rtl8192_proc; static int __maybe_unused proc_get_stats_ap(struct seq_file *m, void *v) { struct net_device *dev = m->private; - struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev); + struct r8192_priv *priv = ieee80211_priv(dev); struct ieee80211_device *ieee = priv->ieee80211; struct ieee80211_network *target; @@ -70,7 +70,7 @@ static int __maybe_unused proc_get_registers(struct seq_file *m, void *v) static int __maybe_unused proc_get_stats_tx(struct seq_file *m, void *v) { struct net_device *dev = m->private; - struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev); + struct r8192_priv *priv = ieee80211_priv(dev); seq_printf(m, "TX VI priority ok int: %lu\n" @@ -129,7 +129,7 @@ static int __maybe_unused proc_get_stats_tx(struct seq_file *m, void *v) static int __maybe_unused proc_get_stats_rx(struct seq_file *m, void *v) { struct net_device *dev = m->private; - struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev); + struct r8192_priv *priv = ieee80211_priv(dev); seq_printf(m, "RX packets: %lu\n"