drivers/ssb/b43_pci_bridge.c

Source file repositories/reference/linux-study-clean/drivers/ssb/b43_pci_bridge.c

File Facts

System
Linux kernel
Corpus path
drivers/ssb/b43_pci_bridge.c
Extension
.c
Size
1879 bytes
Lines
61
Domain
Driver Families
Bucket
drivers/ssb
Inferred role
Driver Families: operation-table or driver-model contract
Status
pattern implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

static struct pci_driver b43_pci_bridge_driver = {
	.name = "b43-pci-bridge",
	.id_table = b43_pci_bridge_tbl,
};


int __init b43_pci_ssb_bridge_init(void)
{
	return ssb_pcihost_register(&b43_pci_bridge_driver);
}

void __exit b43_pci_ssb_bridge_exit(void)
{
	ssb_pcihost_unregister(&b43_pci_bridge_driver);
}

Annotation

Implementation Notes