mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
The asm/pci.h used for many newer architectures share similar definitions. Move the common parts to asm-generic/pci.h to allow for sharing code. Suggested-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/lkml/CAK8P3a0JmPeczfmMBE__vn=Jbvf=nkbpVaZCycyv40pZNCJJXQ@mail.gmail.com/ Link: https://lore.kernel.org/r/20220722214944.831438-5-shorne@gmail.com Signed-off-by: Stafford Horne <shorne@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Pierre Morel <pmorel@linux.ibm.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
19 lines
480 B
C
19 lines
480 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __ASM_UM_PCI_H
|
|
#define __ASM_UM_PCI_H
|
|
#include <linux/types.h>
|
|
#include <asm/io.h>
|
|
|
|
/* Generic PCI */
|
|
#include <asm-generic/pci.h>
|
|
|
|
#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
|
|
/*
|
|
* This is a bit of an annoying hack, and it assumes we only have
|
|
* the virt-pci (if anything). Which is true, but still.
|
|
*/
|
|
void *pci_root_bus_fwnode(struct pci_bus *bus);
|
|
#define pci_root_bus_fwnode pci_root_bus_fwnode
|
|
#endif
|
|
|
|
#endif /* __ASM_UM_PCI_H */
|