blob: b44b14be87d9daeab92cd65c41289fff7c92efbe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __M68K_HARDIRQ_H
2#define __M68K_HARDIRQ_H
3
Greg Ungerer230afb02006-02-08 09:19:17 +10004#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#define HARDIRQ_BITS 8
7
8/*
9 * The hardirq mask has to be large enough to have
10 * space for potentially all IRQ sources in the system
11 * nesting on a single CPU:
12 */
13#if (1 << HARDIRQ_BITS) < NR_IRQS
14# error HARDIRQ_BITS is too low!
15#endif
16
Christoph Hellwigd668bf02009-08-04 16:52:44 +020017#include <asm-generic/hardirq.h>
Greg Ungererc4239412007-07-27 01:09:00 +100018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#endif /* __M68K_HARDIRQ_H */