pq2.h 308 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _PQ2_H
  3. #define _PQ2_H
  4. void __noreturn pq2_restart(char *cmd);
  5. #ifdef CONFIG_PCI
  6. int pq2ads_pci_init_irq(void);
  7. void pq2_init_pci(void);
  8. #else
  9. static inline int pq2ads_pci_init_irq(void)
  10. {
  11. return 0;
  12. }
  13. static inline void pq2_init_pci(void)
  14. {
  15. }
  16. #endif
  17. #endif