xref: /openbmc/linux/arch/powerpc/platforms/82xx/pq2.h (revision b2441318)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PQ2_H
3 #define _PQ2_H
4 
5 void __noreturn pq2_restart(char *cmd);
6 
7 #ifdef CONFIG_PCI
8 int pq2ads_pci_init_irq(void);
9 void pq2_init_pci(void);
10 #else
pq2ads_pci_init_irq(void)11 static inline int pq2ads_pci_init_irq(void)
12 {
13 	return 0;
14 }
15 
pq2_init_pci(void)16 static inline void pq2_init_pci(void)
17 {
18 }
19 #endif
20 
21 #endif
22