drivers/media/cec/core/cec-api.c

Source file repositories/reference/linux-study-clean/drivers/media/cec/core/cec-api.c

File Facts

System
Linux kernel
Corpus path
drivers/media/cec/core/cec-api.c
Extension
.c
Size
17628 bytes
Lines
702
Domain
Driver Families
Bucket
drivers/media
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

const struct file_operations cec_devnode_fops = {
	.owner = THIS_MODULE,
	.open = cec_open,
	.unlocked_ioctl = cec_ioctl,
	.compat_ioctl = cec_ioctl,
	.release = cec_release,
	.poll = cec_poll,
};

Annotation

Implementation Notes