Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _PQ2_H
0003 #define _PQ2_H
0004 
0005 void __noreturn pq2_restart(char *cmd);
0006 
0007 #ifdef CONFIG_PCI
0008 int pq2ads_pci_init_irq(void);
0009 void pq2_init_pci(void);
0010 #else
0011 static inline int pq2ads_pci_init_irq(void)
0012 {
0013     return 0;
0014 }
0015 
0016 static inline void pq2_init_pci(void)
0017 {
0018 }
0019 #endif
0020 
0021 #endif