Commit bc12135d authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jens Axboe

[PATCH] m68k irqs_disabled()

M68k: Allow ALLOWINT to be used with other types than short (fixes a problem
with irqs_disabled(), from Roman Zippel)
parent 4c0d5f05
...@@ -34,11 +34,11 @@ ...@@ -34,11 +34,11 @@
/* the following macro is used when enabling interrupts */ /* the following macro is used when enabling interrupts */
#if defined(MACH_ATARI_ONLY) && !defined(CONFIG_HADES) #if defined(MACH_ATARI_ONLY) && !defined(CONFIG_HADES)
/* block out HSYNC on the atari */ /* block out HSYNC on the atari */
#define ALLOWINT 0xfbff #define ALLOWINT (~0x400)
#define MAX_NOINT_IPL 3 #define MAX_NOINT_IPL 3
#else #else
/* portable version */ /* portable version */
#define ALLOWINT 0xf8ff #define ALLOWINT (~0x700)
#define MAX_NOINT_IPL 0 #define MAX_NOINT_IPL 0
#endif /* machine compilation types */ #endif /* machine compilation types */
......
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