arch/x86/include/asm/probe_roms.h

Source file repositories/reference/linux-study-clean/arch/x86/include/asm/probe_roms.h

File Facts

System
Linux kernel
Corpus path
arch/x86/include/asm/probe_roms.h
Extension
.h
Size
273 bytes
Lines
10
Domain
Architecture Layer
Bucket
arch/x86
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 _PROBE_ROMS_H_
#define _PROBE_ROMS_H_
struct pci_dev;

extern void __iomem *pci_map_biosrom(struct pci_dev *pdev);
extern void pci_unmap_biosrom(void __iomem *rom);
extern size_t pci_biosrom_size(struct pci_dev *pdev);
#endif

Annotation

Implementation Notes