drivers/power/reset/piix4-poweroff.c

Source file repositories/reference/linux-study-clean/drivers/power/reset/piix4-poweroff.c

File Facts

System
Linux kernel
Corpus path
drivers/power/reset/piix4-poweroff.c
Extension
.c
Size
2760 bytes
Lines
111
Domain
Driver Families
Bucket
drivers/power
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 piix4_poweroff_driver = {
	.name		= "piix4-poweroff",
	.id_table	= piix4_poweroff_ids,
	.probe		= piix4_poweroff_probe,
	.remove		= piix4_poweroff_remove,
};

module_pci_driver(piix4_poweroff_driver);
MODULE_AUTHOR("Paul Burton <paul.burton@mips.com>");
MODULE_DESCRIPTION("Intel PIIX4 power-off driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes