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