drivers/platform/x86/intel/atomisp2/led.c
Source file repositories/reference/linux-study-clean/drivers/platform/x86/intel/atomisp2/led.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/platform/x86/intel/atomisp2/led.c- Extension
.c- Size
- 3103 bytes
- Lines
- 118
- 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/dmi.hlinux/gpio/consumer.hlinux/gpio/machine.hlinux/leds.hlinux/module.hlinux/mod_devicetable.hlinux/platform_device.hlinux/workqueue.h
Detected Declarations
function atomisp2_led_initfunction atomisp2_led_cleanupmodule init atomisp2_led_init
Annotated Snippet
module_init(atomisp2_led_init);
module_exit(atomisp2_led_cleanup);
/*
* The ACPI INIT method from Asus WMI's code on the T100TA and T200TA turns the
* LED on (without the WMI interface allowing further control over the LED).
* Ensure we are loaded after asus-nb-wmi so that we turn the LED off again.
*/
MODULE_SOFTDEP("pre: asus_nb_wmi");
MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com");
MODULE_DESCRIPTION("Intel atomisp2 camera LED driver");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/dmi.h`, `linux/gpio/consumer.h`, `linux/gpio/machine.h`, `linux/leds.h`, `linux/module.h`, `linux/mod_devicetable.h`, `linux/platform_device.h`, `linux/workqueue.h`.
- Detected declarations: `function atomisp2_led_init`, `function atomisp2_led_cleanup`, `module init atomisp2_led_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.