1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2008 4 * Ricado Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@gmail.com 5 * This work has been supported by: QTechnology http://qtec.com/ 6 * Based on interrupts.c Wolfgang Denk-DENX Software Engineering-wd@denx.de 7 */ 8 #ifndef INTERRUPT_H 9 #define INTERRUPT_H 10 11 void external_interrupt(struct pt_regs *regs); 12 13 #endif 14