irq-common.h 305 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) BitBox Ltd 2010
  4. */
  5. #ifndef __PLAT_MXC_IRQ_COMMON_H__
  6. #define __PLAT_MXC_IRQ_COMMON_H__
  7. /* all normal IRQs can be FIQs */
  8. #define FIQ_START 0
  9. struct mxc_extra_irq
  10. {
  11. int (*set_irq_fiq)(unsigned int irq, unsigned int type);
  12. };
  13. #endif