interrupt.h 382 B

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