forked from Minki/linux
96f1050d3d
Bill Gatliff & David Brownell pointed out we were missing some copyrights, and licensing terms in some of the files in ./arch/blackfin, so this fixes things, and cleans them up. It also removes: - verbose GPL text(refer to the top level ./COPYING file) - file names (you are looking at the file) - bug url (it's in the ./MAINTAINERS file) - "or later" on GPL-2, when we did not have that right It also allows some Blackfin-specific assembly files to be under a BSD like license (for people to use them outside of Linux). Signed-off-by: Robin Getz <robin.getz@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* Copyright 2007-2009 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#ifndef _IRQ_HANDLER_H
|
|
#define _IRQ_HANDLER_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/linkage.h>
|
|
|
|
/* BASE LEVEL interrupt handler routines */
|
|
asmlinkage void evt_exception(void);
|
|
asmlinkage void trap(void);
|
|
asmlinkage void evt_ivhw(void);
|
|
asmlinkage void evt_timer(void);
|
|
asmlinkage void evt_nmi(void);
|
|
asmlinkage void evt_evt7(void);
|
|
asmlinkage void evt_evt8(void);
|
|
asmlinkage void evt_evt9(void);
|
|
asmlinkage void evt_evt10(void);
|
|
asmlinkage void evt_evt11(void);
|
|
asmlinkage void evt_evt12(void);
|
|
asmlinkage void evt_evt13(void);
|
|
asmlinkage void evt_evt14(void);
|
|
asmlinkage void evt_soft_int1(void);
|
|
asmlinkage void evt_system_call(void);
|
|
asmlinkage void init_exception_buff(void);
|
|
asmlinkage void trap_c(struct pt_regs *fp);
|
|
asmlinkage void ex_replaceable(void);
|
|
asmlinkage void early_trap(void);
|
|
|
|
extern void *ex_table[];
|
|
extern void return_from_exception(void);
|
|
|
|
extern int bfin_request_exception(unsigned int exception, void (*handler)(void));
|
|
extern int bfin_free_exception(unsigned int exception, void (*handler)(void));
|
|
|
|
#endif
|