drivers/pwm/pwm-lpss-pci.c

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

File Facts

System
Linux kernel
Corpus path
drivers/pwm/pwm-lpss-pci.c
Extension
.c
Size
2205 bytes
Lines
75
Domain
Driver Families
Bucket
drivers/pwm
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 pwm_lpss_driver_pci = {
	.name = "pwm-lpss",
	.id_table = pwm_lpss_pci_ids,
	.probe = pwm_lpss_probe_pci,
	.remove = pwm_lpss_remove_pci,
};
module_pci_driver(pwm_lpss_driver_pci);

MODULE_DESCRIPTION("PWM PCI driver for Intel LPSS");
MODULE_LICENSE("GPL v2");
MODULE_IMPORT_NS("PWM_LPSS");

Annotation

Implementation Notes