arch/mips/pci/fixup-bcm63xx.c

Source file repositories/reference/linux-study-clean/arch/mips/pci/fixup-bcm63xx.c

File Facts

System
Linux kernel
Corpus path
arch/mips/pci/fixup-bcm63xx.c
Extension
.c
Size
485 bytes
Lines
22
Domain
Architecture Layer
Bucket
arch/mips
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

#include <linux/types.h>
#include <linux/pci.h>
#include <bcm63xx_cpu.h>

int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
{
	return bcm63xx_get_irq_number(IRQ_PCI);
}

int pcibios_plat_dev_init(struct pci_dev *dev)
{
	return 0;
}

Annotation

Implementation Notes