2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* 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"
|
2005-09-04 00:57:45 +02:00
|
|
|
#include "asm/ptrace.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
extern int um_request_irq(unsigned int irq, int fd, int type,
|
2006-10-08 23:49:34 +02:00
|
|
|
irqreturn_t (*handler)(int, void *),
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long irqflags, const char * devname,
|
|
|
|
void *dev_id);
|
2005-09-04 00:57:45 +02:00
|
|
|
extern int init_aio_irq(int irq, char *name,
|
2006-10-08 23:49:34 +02:00
|
|
|
irqreturn_t (*handler)(int, void *));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#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:
|
|
|
|
*/
|