You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* Simple oneliner include to the PCIv3 early init */
|
|
#ifdef CONFIG_PCI
|
|
extern int pci_v3_early_init(void);
|
|
#else
|
|
static inline int pci_v3_early_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|