projects
/
platform
/
kernel
/
linux-rpi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[platform/kernel/linux-rpi.git]
/
arch
/
arm
/
mach-integrator
/
pci_v3.h
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/* Simple oneliner include to the PCIv3 early init */
3
#ifdef CONFIG_PCI
4
extern int pci_v3_early_init(void);
5
#else
6
static inline int pci_v3_early_init(void)
7
{
8
return 0;
9
}
10
#endif