Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 356310
b: refs/heads/master
c: b54cb23
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Helge Deller committed Feb 20, 2013
1 parent 9d3bac2 commit 4f46b1b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cca8e9026041544c0103b3037d8f03c1d2f4ae02
refs/heads/master: b54cb2332e387f29c65f19f3620e5c812c89a328
4 changes: 2 additions & 2 deletions trunk/arch/parisc/include/asm/floppy.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ static int fd_request_irq(void)
{
if(can_use_virtual_dma)
return request_irq(FLOPPY_IRQ, floppy_hardint,
IRQF_DISABLED, "floppy", NULL);
0, "floppy", NULL);
else
return request_irq(FLOPPY_IRQ, floppy_interrupt,
IRQF_DISABLED, "floppy", NULL);
0, "floppy", NULL);
}

static unsigned long dma_mem_alloc(unsigned long size)
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/parisc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,14 +379,14 @@ void do_cpu_irq_mask(struct pt_regs *regs)
static struct irqaction timer_action = {
.handler = timer_interrupt,
.name = "timer",
.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
.flags = IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
};

#ifdef CONFIG_SMP
static struct irqaction ipi_action = {
.handler = ipi_interrupt,
.name = "IPI",
.flags = IRQF_DISABLED | IRQF_PERCPU,
.flags = IRQF_PERCPU,
};
#endif

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/superio.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ superio_init(struct pci_dev *pcidev)
else
printk(KERN_ERR PFX "USB regulator not initialized!\n");

if (request_irq(pdev->irq, superio_interrupt, IRQF_DISABLED,
if (request_irq(pdev->irq, superio_interrupt, 0,
SUPERIO, (void *)sio)) {

printk(KERN_ERR PFX "could not get irq\n");
Expand Down

0 comments on commit 4f46b1b

Please sign in to comment.