msi.h 213 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _IOP13XX_MSI_H_
  3. #define _IOP13XX_MSI_H_
  4. #ifdef CONFIG_PCI_MSI
  5. void iop13xx_msi_init(void);
  6. #else
  7. static inline void iop13xx_msi_init(void)
  8. {
  9. return;
  10. }
  11. #endif
  12. #endif