drivers/mcb/mcb-pci.c

Source file repositories/reference/linux-study-clean/drivers/mcb/mcb-pci.c

File Facts

System
Linux kernel
Corpus path
drivers/mcb/mcb-pci.c
Extension
.c
Size
3554 bytes
Lines
158
Domain
Driver Families
Bucket
drivers/mcb
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 mcb_pci_driver = {
	.name = "mcb-pci",
	.id_table = mcb_pci_tbl,
	.probe = mcb_pci_probe,
	.remove = mcb_pci_remove,
};

module_pci_driver(mcb_pci_driver);

MODULE_AUTHOR("Johannes Thumshirn <johannes.thumshirn@men.de>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MCB over PCI support");
MODULE_IMPORT_NS("MCB");

Annotation

Implementation Notes