arch/um/include/asm/pci.h

Source file repositories/reference/linux-study-clean/arch/um/include/asm/pci.h

File Facts

System
Linux kernel
Corpus path
arch/um/include/asm/pci.h
Extension
.h
Size
469 bytes
Lines
20
Domain
Architecture Layer
Bucket
arch/um
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#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
/*
 * 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 */

Annotation

Implementation Notes