blob: c2e1aa0f0d14441c05a4e9846ac5ef09254c3f84 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __H8300_HARDIRQ_H
2#define __H8300_HARDIRQ_H
3
Christoph Hellwig6e0c9e72009-09-21 17:03:58 -07004#include <asm/irq.h>
Yoshinori Sato5cc265a2008-02-23 15:23:59 -08005
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 Hellwig6e0c9e72009-09-21 17:03:58 -070017#include <asm-generic/hardirq.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#endif