mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
[WATCHDOG] rm9k_wdt: fix interrupt handler arguments
Removed 'struct pt_regs *' from interrupt handler arguments. Signed-off-by: Thomas Koeller <thomas.koeller@baslerweb.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
bec4f749cb
commit
74e86ab884
@ -47,7 +47,7 @@
|
||||
|
||||
|
||||
/* Function prototypes */
|
||||
static irqreturn_t wdt_gpi_irqhdl(int, void *, struct pt_regs *);
|
||||
static irqreturn_t wdt_gpi_irqhdl(int, void *);
|
||||
static void wdt_gpi_start(void);
|
||||
static void wdt_gpi_stop(void);
|
||||
static void wdt_gpi_set_timeout(unsigned int);
|
||||
@ -115,7 +115,7 @@ static struct notifier_block wdt_gpi_shutdown = {
|
||||
|
||||
|
||||
/* Interrupt handler */
|
||||
static irqreturn_t wdt_gpi_irqhdl(int irq, void *ctxt, struct pt_regs *regs)
|
||||
static irqreturn_t wdt_gpi_irqhdl(int irq, void *ctxt)
|
||||
{
|
||||
if (!unlikely(__raw_readl(wd_regs + 0x0008) & 0x1))
|
||||
return IRQ_NONE;
|
||||
|
Loading…
Reference in New Issue
Block a user