rio.h 424 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * RapidIO architecture support
  4. *
  5. * Copyright 2005 MontaVista Software, Inc.
  6. * Matt Porter <[email protected]>
  7. */
  8. #ifndef ASM_PPC_RIO_H
  9. #define ASM_PPC_RIO_H
  10. #ifdef CONFIG_FSL_RIO
  11. extern int fsl_rio_mcheck_exception(struct pt_regs *);
  12. #else
  13. static inline int fsl_rio_mcheck_exception(struct pt_regs *regs) {return 0; }
  14. #endif
  15. #endif /* ASM_PPC_RIO_H */