interrupt.h 382 B

12345678910111213
  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. void external_interrupt(struct pt_regs *regs);
  11. #endif