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 <ztong0001@gmail.com> Link: https://lore.kernel.org/r/20220730033335.74153-3-ztong0001@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2faa312bc0
commit
626d28e9be
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user