diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-10 16:27:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-10 16:27:24 -0500 |
commit | ab0475df5ce45d80a9e5f056cbad3a58e4930206 (patch) | |
tree | 053912870c86d7bbec54f107215c8c7bbb04806a /drivers | |
parent | 3e8c04eb117445d67ae2b83e08bec4005129356a (diff) | |
parent | 4436820a98cdaf497a874323095e328831030956 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k updates from Geert Uytterhoeven:
"Summary:
- switch to asm-generic/futex.h
- various cleanups
- defconfig updates"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k:
m68k/defconfig: Enable Ethernet bridging
m68k/defconfig: Enable Atari EtherNAT and EtherNEC Ethernet support
m68k/defconfig: Enable automounting of devtmpfs at /dev
m68k/defconfig: Enable early printk support
m68k/defconfig: Enable test modules
m68k/defconfig: Refresh defconfigs for v3.16-rc1--v3.19-rc2
m68k/atari: Remove obsolete IRQ_TYPE_*
sound: dmasound_atari: Remove obsolete IRQ_TYPE_SLOW
video: atafb: Remove obsolete IRQ_TYPE_PRIO
parport: parport_atari: Remove obsolete IRQ_TYPE_SLOW
net: atarilance: Remove obsolete IRQ_TYPE_PRIO
m68k/atari: Remove obsolete keyboard_tasklet scheduling
m68k/mac: Fix scsi_type for Mac LC and similar models
m68k: Switch to asm-generic/futex.h
m68k/mvme147: config.c - Remove unused functions
m68k/atari: atakeyb.c - Remove some unused functions
m68k/mvme16x: rtc - Don't use module_init in non-modular code
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/amd/atarilance.c | 8 | ||||
-rw-r--r-- | drivers/parport/parport_atari.c | 4 | ||||
-rw-r--r-- | drivers/video/fbdev/atafb.c | 3 |
3 files changed, 7 insertions, 8 deletions
diff --git a/drivers/net/ethernet/amd/atarilance.c b/drivers/net/ethernet/amd/atarilance.c index e07ce5ff2d48..b10964e8cb54 100644 --- a/drivers/net/ethernet/amd/atarilance.c +++ b/drivers/net/ethernet/amd/atarilance.c | |||
@@ -553,8 +553,8 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
553 | if (lp->cardtype == PAM_CARD || | 553 | if (lp->cardtype == PAM_CARD || |
554 | memaddr == (unsigned short *)0xffe00000) { | 554 | memaddr == (unsigned short *)0xffe00000) { |
555 | /* PAMs card and Riebl on ST use level 5 autovector */ | 555 | /* PAMs card and Riebl on ST use level 5 autovector */ |
556 | if (request_irq(IRQ_AUTO_5, lance_interrupt, IRQ_TYPE_PRIO, | 556 | if (request_irq(IRQ_AUTO_5, lance_interrupt, 0, |
557 | "PAM,Riebl-ST Ethernet", dev)) { | 557 | "PAM,Riebl-ST Ethernet", dev)) { |
558 | printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 ); | 558 | printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 ); |
559 | return 0; | 559 | return 0; |
560 | } | 560 | } |
@@ -567,8 +567,8 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
567 | printk( "Lance: request for VME interrupt failed\n" ); | 567 | printk( "Lance: request for VME interrupt failed\n" ); |
568 | return 0; | 568 | return 0; |
569 | } | 569 | } |
570 | if (request_irq(irq, lance_interrupt, IRQ_TYPE_PRIO, | 570 | if (request_irq(irq, lance_interrupt, 0, "Riebl-VME Ethernet", |
571 | "Riebl-VME Ethernet", dev)) { | 571 | dev)) { |
572 | printk( "Lance: request for irq %u failed\n", irq ); | 572 | printk( "Lance: request for irq %u failed\n", irq ); |
573 | return 0; | 573 | return 0; |
574 | } | 574 | } |
diff --git a/drivers/parport/parport_atari.c b/drivers/parport/parport_atari.c index 7ad59ac68cf6..a81cd2a2747f 100644 --- a/drivers/parport/parport_atari.c +++ b/drivers/parport/parport_atari.c | |||
@@ -192,8 +192,8 @@ static int __init parport_atari_init(void) | |||
192 | &parport_atari_ops); | 192 | &parport_atari_ops); |
193 | if (!p) | 193 | if (!p) |
194 | return -ENODEV; | 194 | return -ENODEV; |
195 | if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, | 195 | if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, 0, p->name, |
196 | IRQ_TYPE_SLOW, p->name, p)) { | 196 | p)) { |
197 | parport_put_port (p); | 197 | parport_put_port (p); |
198 | return -ENODEV; | 198 | return -ENODEV; |
199 | } | 199 | } |
diff --git a/drivers/video/fbdev/atafb.c b/drivers/video/fbdev/atafb.c index 4953b657635e..cb9ee2556850 100644 --- a/drivers/video/fbdev/atafb.c +++ b/drivers/video/fbdev/atafb.c | |||
@@ -3118,8 +3118,7 @@ int __init atafb_init(void) | |||
3118 | printk("atafb_init: initializing Falcon hw\n"); | 3118 | printk("atafb_init: initializing Falcon hw\n"); |
3119 | fbhw = &falcon_switch; | 3119 | fbhw = &falcon_switch; |
3120 | atafb_ops.fb_setcolreg = &falcon_setcolreg; | 3120 | atafb_ops.fb_setcolreg = &falcon_setcolreg; |
3121 | error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher, | 3121 | error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher, 0, |
3122 | IRQ_TYPE_PRIO, | ||
3123 | "framebuffer:modeswitch", | 3122 | "framebuffer:modeswitch", |
3124 | falcon_vbl_switcher); | 3123 | falcon_vbl_switcher); |
3125 | if (error) | 3124 | if (error) |