drivers/gpu/drm/panel/panel-sitronix-st7701.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/panel/panel-sitronix-st7701.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/panel/panel-sitronix-st7701.c
Extension
.c
Size
49357 bytes
Lines
1463
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(st7701_driver_init);

static void __exit st7701_driver_exit(void)
{
	if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
		mipi_dsi_driver_unregister(&st7701_dsi_driver);

	if (IS_ENABLED(CONFIG_SPI))
		spi_unregister_driver(&st7701_spi_driver);
}
module_exit(st7701_driver_exit);

MODULE_AUTHOR("Jagan Teki <jagan@amarulasolutions.com>");
MODULE_AUTHOR("Hironori KIKUCHI <kikuchan98@gmail.com>");
MODULE_DESCRIPTION("Sitronix ST7701 LCD Panel Driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes