drivers/staging/media/ipu3/ipu3.c

Source file repositories/reference/linux-study-clean/drivers/staging/media/ipu3/ipu3.c

File Facts

System
Linux kernel
Corpus path
drivers/staging/media/ipu3/ipu3.c
Extension
.c
Size
22181 bytes
Lines
866
Domain
Driver Families
Bucket
drivers/staging
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 imgu_pci_driver = {
	.name = IMGU_NAME,
	.id_table = imgu_pci_tbl,
	.probe = imgu_pci_probe,
	.remove = imgu_pci_remove,
	.driver = {
		.pm = &imgu_pm_ops,
	},
};

module_pci_driver(imgu_pci_driver);

MODULE_AUTHOR("Tuukka Toivonen");
MODULE_AUTHOR("Tianshu Qiu <tian.shu.qiu@intel.com>");
MODULE_AUTHOR("Jian Xu Zheng");
MODULE_AUTHOR("Yuning Pu");
MODULE_AUTHOR("Yong Zhi <yong.zhi@intel.com>");
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Intel ipu3_imgu PCI driver");
MODULE_FIRMWARE(IMGU_FW_NAME);
MODULE_FIRMWARE(IMGU_FW_NAME_20161208);
MODULE_FIRMWARE(IMGU_FW_NAME_IPU_20161208);

Annotation

Implementation Notes