drivers/iio/industrialio-sw-trigger.c
Source file repositories/reference/linux-study-clean/drivers/iio/industrialio-sw-trigger.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/iio/industrialio-sw-trigger.c- Extension
.c- Size
- 4336 bytes
- Lines
- 184
- Domain
- Driver Families
- Bucket
- drivers/iio
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hlinux/init.hlinux/kmod.hlinux/list.hlinux/slab.hlinux/iio/sw_trigger.hlinux/iio/configfs.hlinux/configfs.h
Detected Declarations
function list_for_each_entryfunction iio_register_sw_trigger_typefunction iio_unregister_sw_trigger_typefunction iio_sw_trigger_destroyfunction trigger_drop_groupfunction iio_sw_trigger_initfunction iio_sw_trigger_exitmodule init iio_sw_trigger_initexport iio_register_sw_trigger_typeexport iio_unregister_sw_trigger_typeexport iio_sw_trigger_createexport iio_sw_trigger_destroy
Annotated Snippet
module_init(iio_sw_trigger_init);
static void __exit iio_sw_trigger_exit(void)
{
configfs_unregister_default_group(iio_triggers_group);
}
module_exit(iio_sw_trigger_exit);
MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
MODULE_DESCRIPTION("Industrial I/O software triggers support");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/module.h`, `linux/init.h`, `linux/kmod.h`, `linux/list.h`, `linux/slab.h`, `linux/iio/sw_trigger.h`, `linux/iio/configfs.h`, `linux/configfs.h`.
- Detected declarations: `function list_for_each_entry`, `function iio_register_sw_trigger_type`, `function iio_unregister_sw_trigger_type`, `function iio_sw_trigger_destroy`, `function trigger_drop_group`, `function iio_sw_trigger_init`, `function iio_sw_trigger_exit`, `module init iio_sw_trigger_init`, `export iio_register_sw_trigger_type`, `export iio_unregister_sw_trigger_type`.
- Atlas domain: Driver Families / drivers/iio.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.