irq_kern.h 872 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
/*
 * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#ifndef __IRQ_KERN_H__
#define __IRQ_KERN_H__

#include "linux/interrupt.h"
J
Jeff Dike 已提交
10
#include "asm/ptrace.h"
L
Linus Torvalds 已提交
11 12 13 14 15 16

extern int um_request_irq(unsigned int irq, int fd, int type,
			  irqreturn_t (*handler)(int, void *,
						 struct pt_regs *),
			  unsigned long irqflags,  const char * devname,
			  void *dev_id);
J
Jeff Dike 已提交
17 18
extern int init_aio_irq(int irq, char *name,
			irqreturn_t (*handler)(int, void *, struct pt_regs *));
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31

#endif

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * Emacs will notice this stuff at the end of the file and automatically
 * adjust the settings for this buffer only.  This must remain at the end
 * of the file.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-file-style: "linux"
 * End:
 */