git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
21 lines
269 B
C
21 lines
269 B
C
#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
|