Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/powerpc/platforms/82xx/pq2.h
26481 views
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
11
static inline int pq2ads_pci_init_irq(void)
12
{
13
return 0;
14
}
15
16
static inline void pq2_init_pci(void)
17
{
18
}
19
#endif
20
21
#endif
22
23