repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git]
/
arch
/
powerpc
/
platforms
/
82xx
/
pq2.h
blob
902ef0bd4949f7d50cd088d05b56a7828b443412
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