mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: rtl8192e: Remove pt_regs * irq handler parameter
struct pt_regs pointer is no longer passed as a irq handler argument. and also remove unnecessary macros. Signed-off-by: navin patidar <navinp@cdac.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0472c9890d
commit
30224b5e0b
@ -94,6 +94,7 @@ MODULE_DEVICE_TABLE(pci, rtl8192_pci_id_tbl);
|
||||
static int rtl8192_pci_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *id);
|
||||
static void rtl8192_pci_disconnect(struct pci_dev *pdev);
|
||||
static irqreturn_t rtl8192_interrupt(int irq, void *netdev);
|
||||
|
||||
static struct pci_driver rtl8192_pci_driver = {
|
||||
.name = DRV_NAME, /* Driver name */
|
||||
@ -1324,7 +1325,7 @@ static short rtl8192_init(struct net_device *dev)
|
||||
(unsigned long)dev);
|
||||
|
||||
rtl8192_irq_disable(dev);
|
||||
if (request_irq(dev->irq, (void *)rtl8192_interrupt_rsl, IRQF_SHARED,
|
||||
if (request_irq(dev->irq, rtl8192_interrupt, IRQF_SHARED,
|
||||
dev->name, dev)) {
|
||||
printk(KERN_ERR "Error allocating IRQ %d", dev->irq);
|
||||
return -1;
|
||||
@ -2704,7 +2705,7 @@ static int rtl8192_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
}
|
||||
|
||||
|
||||
irqreturn_type rtl8192_interrupt(int irq, void *netdev, struct pt_regs *regs)
|
||||
irqreturn_t rtl8192_interrupt(int irq, void *netdev)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) netdev;
|
||||
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
|
||||
|
@ -88,10 +88,6 @@
|
||||
.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID , \
|
||||
.driver_data = (kernel_ulong_t)&(cfg)
|
||||
|
||||
#define irqreturn_type irqreturn_t
|
||||
|
||||
#define rtl8192_interrupt(x, y, z) rtl8192_interrupt_rsl(x, y)
|
||||
|
||||
#define RTL_MAX_SCAN_SIZE 128
|
||||
|
||||
#define RTL_RATE_MAX 30
|
||||
@ -1044,8 +1040,6 @@ void rtl8192_set_chan(struct net_device *dev, short ch);
|
||||
void check_rfctrl_gpio_timer(unsigned long data);
|
||||
|
||||
void rtl8192_hw_wakeup_wq(void *data);
|
||||
irqreturn_type rtl8192_interrupt(int irq, void *netdev, struct pt_regs *regs);
|
||||
|
||||
short rtl8192_pci_initdescring(struct net_device *dev);
|
||||
|
||||
void rtl8192_cancel_deferred_work(struct r8192_priv *priv);
|
||||
|
Loading…
Reference in New Issue
Block a user