On 9/6/26 15:19, David Heidelberg via B4 Relay wrote:
From: David Heidelberg <[email protected]>Replace the bogus "GPL v2" with "GPL" as MODULE_LICNSE() string. The value does not declare the module's exact license, but only lets the module loader test whether the module is Free Software or not. See commit bf7fbeeae6db ("module: Cure the MODULE_LICENSE "GPL" vs. "GPL v2" bogosity") in the details of the issue. The fix is to use "GPL" for all modules under any variant of the GPL. Signed-off-by: David Heidelberg <[email protected]> --- drivers/gpu/drm/panel/panel-ebbg-ft8719.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/panel/panel-ebbg-ft8719.c b/drivers/gpu/drm/panel/panel-ebbg-ft8719.c index 1ab09c50a6306..14982263a94f1 100644 --- a/drivers/gpu/drm/panel/panel-ebbg-ft8719.c +++ b/drivers/gpu/drm/panel/panel-ebbg-ft8719.c @@ -241,9 +241,9 @@ static struct mipi_dsi_driver ebbg_ft8719_driver = { .name = "panel-ebbg-ft8719", .of_match_table = ebbg_ft8719_of_match, }, }; module_mipi_dsi_driver(ebbg_ft8719_driver);MODULE_AUTHOR("Joel Selvaraj <[email protected]>");MODULE_DESCRIPTION("DRM driver for EBBG FT8719 video dsi panel"); -MODULE_LICENSE("GPL v2"); +MODULE_LICENSE("GPL");
Reviewed-by: Neil Armstrong <[email protected]> Thanks, Neil
