staging: rtl8192e: Remove empty struct rtl819x_ops
Remove empty struct rtl819x_ops as it is dead code. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/31b5b0ba88d7b07b0407956d56446e8f0e62e3e7.1677133271.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fda2093860
commit
5e2b6593f2
|
@ -25,9 +25,6 @@
|
|||
int hwwep = 1;
|
||||
static char *ifname = "wlan%d";
|
||||
|
||||
static const struct rtl819x_ops rtl819xp_ops = {
|
||||
};
|
||||
|
||||
static struct pci_device_id rtl8192_pci_id_tbl[] = {
|
||||
{PCI_DEVICE(0x10ec, 0x8192)},
|
||||
{PCI_DEVICE(0x07aa, 0x0044)},
|
||||
|
@ -2190,7 +2187,6 @@ static int _rtl92e_pci_probe(struct pci_dev *pdev,
|
|||
unsigned long ioaddr = 0;
|
||||
struct net_device *dev = NULL;
|
||||
struct r8192_priv *priv = NULL;
|
||||
struct rtl819x_ops *ops = (struct rtl819x_ops *)(id->driver_data);
|
||||
unsigned long pmem_start, pmem_len, pmem_flags;
|
||||
int err = -ENOMEM;
|
||||
u8 revision_id;
|
||||
|
@ -2257,8 +2253,6 @@ static int _rtl92e_pci_probe(struct pci_dev *pdev,
|
|||
if (pdev->device == 0x8192 && revision_id == 0x10)
|
||||
goto err_unmap;
|
||||
|
||||
priv->ops = ops;
|
||||
|
||||
if (!rtl92e_check_adapter(pdev, dev))
|
||||
goto err_unmap;
|
||||
|
||||
|
|
|
@ -198,9 +198,6 @@ struct rtl8192_tx_ring {
|
|||
struct sk_buff_head queue;
|
||||
};
|
||||
|
||||
struct rtl819x_ops {
|
||||
};
|
||||
|
||||
struct r8192_priv {
|
||||
struct pci_dev *pdev;
|
||||
struct pci_dev *bridge_pdev;
|
||||
|
@ -218,7 +215,6 @@ struct r8192_priv {
|
|||
struct delayed_work txpower_tracking_wq;
|
||||
struct delayed_work rfpath_check_wq;
|
||||
struct delayed_work gpio_change_rf_wq;
|
||||
struct rtl819x_ops *ops;
|
||||
struct rtllib_device *rtllib;
|
||||
|
||||
struct work_struct reset_wq;
|
||||
|
|
Loading…
Reference in New Issue