drivers/gpu/drm/bridge/adv7511/adv7511_drv.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
Extension
.c
Size
43116 bytes
Lines
1539
Domain
Driver Families
Bucket
drivers/gpu
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.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(adv7511_init);

static void __exit adv7511_exit(void)
{
	i2c_del_driver(&adv7511_driver);

	if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
		mipi_dsi_driver_unregister(&adv7533_dsi_driver);
}
module_exit(adv7511_exit);

MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
MODULE_DESCRIPTION("ADV7511 HDMI transmitter driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes