drivers/thermal/intel/intel_pch_thermal.c

Source file repositories/reference/linux-study-clean/drivers/thermal/intel/intel_pch_thermal.c

File Facts

System
Linux kernel
Corpus path
drivers/thermal/intel/intel_pch_thermal.c
Extension
.c
Size
12381 bytes
Lines
408
Domain
Driver Families
Bucket
drivers/thermal
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 intel_pch_thermal_driver = {
	.name		= "intel_pch_thermal",
	.id_table	= intel_pch_thermal_id,
	.probe		= intel_pch_thermal_probe,
	.remove		= intel_pch_thermal_remove,
	.driver.pm	= &intel_pch_pm_ops,
};

module_pci_driver(intel_pch_thermal_driver);

MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Intel PCH Thermal driver");

Annotation

Implementation Notes