drivers/mmc/host/via-sdmmc.c

Source file repositories/reference/linux-study-clean/drivers/mmc/host/via-sdmmc.c

File Facts

System
Linux kernel
Corpus path
drivers/mmc/host/via-sdmmc.c
Extension
.c
Size
35096 bytes
Lines
1312
Domain
Driver Families
Bucket
drivers/mmc
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 via_sd_driver = {
	.name = DRV_NAME,
	.id_table = via_ids,
	.probe = via_sd_probe,
	.remove = via_sd_remove,
	.driver.pm = pm_sleep_ptr(&via_sd_pm_ops),
};

module_pci_driver(via_sd_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("VIA Technologies Inc.");
MODULE_DESCRIPTION("VIA SD/MMC Card Interface driver");

Annotation

Implementation Notes