repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
22 lines
308 B
C
22 lines
308 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _PQ2_H
|
|
#define _PQ2_H
|
|
|
|
void __noreturn pq2_restart(char *cmd);
|
|
|
|
#ifdef CONFIG_PCI
|
|
int pq2ads_pci_init_irq(void);
|
|
void pq2_init_pci(void);
|
|
#else
|
|
static inline int pq2ads_pci_init_irq(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void pq2_init_pci(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|