drivers/gpio/gpio-ml-ioh.c

Source file repositories/reference/linux-study-clean/drivers/gpio/gpio-ml-ioh.c

File Facts

System
Linux kernel
Corpus path
drivers/gpio/gpio-ml-ioh.c
Extension
.c
Size
12949 bytes
Lines
529
Domain
Driver Families
Bucket
drivers/gpio
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 ioh_gpio_driver = {
	.name = "ml_ioh_gpio",
	.id_table = ioh_gpio_pcidev_id,
	.probe = ioh_gpio_probe,
	.driver = {
		.pm = pm_sleep_ptr(&ioh_gpio_pm_ops),
	},
};

module_pci_driver(ioh_gpio_driver);

MODULE_DESCRIPTION("OKI SEMICONDUCTOR ML-IOH series GPIO Driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes