Commit 79abeed6 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven

m68k/atari: Do not use "/" in interrupt names

It may trigger a warning in fs/proc/generic.c:__xlate_proc_name() when
trying to add an entry for the interrupt handler to sysfs.
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 1fc74ac6
...@@ -575,7 +575,7 @@ int atari_keyb_init(void) ...@@ -575,7 +575,7 @@ int atari_keyb_init(void)
kb_state.len = 0; kb_state.len = 0;
error = request_irq(IRQ_MFP_ACIA, atari_keyboard_interrupt, error = request_irq(IRQ_MFP_ACIA, atari_keyboard_interrupt,
IRQ_TYPE_SLOW, "keyboard/mouse/MIDI", IRQ_TYPE_SLOW, "keyboard,mouse,MIDI",
atari_keyboard_interrupt); atari_keyboard_interrupt);
if (error) if (error)
return error; return error;
......
...@@ -180,7 +180,7 @@ void __init stdma_init(void) ...@@ -180,7 +180,7 @@ void __init stdma_init(void)
{ {
stdma_isr = NULL; stdma_isr = NULL;
if (request_irq(IRQ_MFP_FDC, stdma_int, IRQ_TYPE_SLOW | IRQF_SHARED, if (request_irq(IRQ_MFP_FDC, stdma_int, IRQ_TYPE_SLOW | IRQF_SHARED,
"ST-DMA: floppy/ACSI/IDE/Falcon-SCSI", stdma_int)) "ST-DMA floppy,ACSI,IDE,Falcon-SCSI", stdma_int))
pr_err("Couldn't register ST-DMA interrupt\n"); pr_err("Couldn't register ST-DMA interrupt\n");
} }
......
...@@ -554,7 +554,7 @@ static unsigned long __init lance_probe1( struct net_device *dev, ...@@ -554,7 +554,7 @@ static unsigned long __init lance_probe1( struct net_device *dev,
memaddr == (unsigned short *)0xffe00000) { memaddr == (unsigned short *)0xffe00000) {
/* PAMs card and Riebl on ST use level 5 autovector */ /* PAMs card and Riebl on ST use level 5 autovector */
if (request_irq(IRQ_AUTO_5, lance_interrupt, IRQ_TYPE_PRIO, if (request_irq(IRQ_AUTO_5, lance_interrupt, IRQ_TYPE_PRIO,
"PAM/Riebl-ST Ethernet", dev)) { "PAM,Riebl-ST Ethernet", dev)) {
printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 ); printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 );
return 0; return 0;
} }
......
...@@ -3117,7 +3117,7 @@ int __init atafb_init(void) ...@@ -3117,7 +3117,7 @@ int __init atafb_init(void)
atafb_ops.fb_setcolreg = &falcon_setcolreg; atafb_ops.fb_setcolreg = &falcon_setcolreg;
error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher, error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher,
IRQ_TYPE_PRIO, IRQ_TYPE_PRIO,
"framebuffer/modeswitch", "framebuffer:modeswitch",
falcon_vbl_switcher); falcon_vbl_switcher);
if (error) if (error)
return error; return error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment