diff options
Diffstat (limited to 'include/asm-parisc/floppy.h')
-rw-r--r-- | include/asm-parisc/floppy.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/asm-parisc/floppy.h b/include/asm-parisc/floppy.h index ca3aed768cd..da2f9c15714 100644 --- a/include/asm-parisc/floppy.h +++ b/include/asm-parisc/floppy.h @@ -156,13 +156,11 @@ static int vdma_get_dma_residue(unsigned int dummy) static int fd_request_irq(void) { if(can_use_virtual_dma) - return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, - "floppy", NULL); + return request_irq(FLOPPY_IRQ, floppy_hardint, + IRQF_DISABLED, "floppy", NULL); else return request_irq(FLOPPY_IRQ, floppy_interrupt, - SA_INTERRUPT|SA_SAMPLE_RANDOM, - "floppy", NULL); - + IRQF_DISABLED, "floppy", NULL); } static unsigned long dma_mem_alloc(unsigned long size) |