mirror of https://gitee.com/openkylin/linux.git
h8300: convert to asm-generic/hardirq.h
Signed-off-by: Christoph Hellwig <hch@lst.de> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
eb8cdec4a9
commit
6e0c9e7777
|
@ -1,18 +1,7 @@
|
|||
#ifndef __H8300_HARDIRQ_H
|
||||
#define __H8300_HARDIRQ_H
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/threads.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/irq.h>
|
||||
|
||||
typedef struct {
|
||||
unsigned int __softirq_pending;
|
||||
} ____cacheline_aligned irq_cpustat_t;
|
||||
|
||||
#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
|
||||
|
||||
extern void ack_bad_irq(unsigned int irq);
|
||||
#include <asm/irq.h>
|
||||
|
||||
#define HARDIRQ_BITS 8
|
||||
|
||||
|
@ -25,4 +14,6 @@ extern void ack_bad_irq(unsigned int irq);
|
|||
# error HARDIRQ_BITS is too low!
|
||||
#endif
|
||||
|
||||
#include <asm-generic/hardirq.h>
|
||||
|
||||
#endif
|
||||
|
|
|
@ -81,11 +81,6 @@ struct irq_chip h8300irq_chip = {
|
|||
.end = h8300_end_irq,
|
||||
};
|
||||
|
||||
void ack_bad_irq(unsigned int irq)
|
||||
{
|
||||
printk("unexpected IRQ trap at vector %02x\n", irq);
|
||||
}
|
||||
|
||||
#if defined(CONFIG_RAMKERNEL)
|
||||
static unsigned long __init *get_vector_address(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue