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