drivers/platform/x86/dell/dell-pc.c
Source file repositories/reference/linux-study-clean/drivers/platform/x86/dell/dell-pc.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/platform/x86/dell/dell-pc.c- Extension
.c- Size
- 8043 bytes
- Lines
- 303
- Domain
- Driver Families
- Bucket
- drivers/platform
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/bitfield.hlinux/bitops.hlinux/bits.hlinux/device/faux.hlinux/dmi.hlinux/err.hlinux/init.hlinux/kernel.hlinux/module.hlinux/platform_profile.hlinux/slab.hdell-smbios.h
Detected Declarations
enum thermal_mode_bitsfunction thermal_get_modefunction thermal_get_supported_modesfunction thermal_get_acc_modefunction thermal_set_modefunction thermal_platform_profile_setfunction thermal_platform_profile_getfunction thermal_platform_profile_probefunction dell_pc_faux_probefunction dell_initfunction dell_exitmodule init dell_init
Annotated Snippet
module_init(dell_init);
module_exit(dell_exit);
MODULE_AUTHOR("Lyndon Sanche <lsanche@lyndeno.ca>");
MODULE_DESCRIPTION("Dell PC driver");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/bitfield.h`, `linux/bitops.h`, `linux/bits.h`, `linux/device/faux.h`, `linux/dmi.h`, `linux/err.h`, `linux/init.h`, `linux/kernel.h`.
- Detected declarations: `enum thermal_mode_bits`, `function thermal_get_mode`, `function thermal_get_supported_modes`, `function thermal_get_acc_mode`, `function thermal_set_mode`, `function thermal_platform_profile_set`, `function thermal_platform_profile_get`, `function thermal_platform_profile_probe`, `function dell_pc_faux_probe`, `function dell_init`.
- Atlas domain: Driver Families / drivers/platform.
- Implementation status: integration implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.