]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/mediatek: mtk_cec: Fix non-static global variable
authorLouis-Alexis Eyraud <louisalexis.eyraud@collabora.com>
Wed, 29 Apr 2026 09:59:01 +0000 (11:59 +0200)
committerChun-Kuang Hu <chunkuang.hu@kernel.org>
Mon, 18 May 2026 14:19:18 +0000 (14:19 +0000)
The struct 'mtk_cec_driver' is not used outside of the
mtk_cec.c file, so make it static to silence sparse warning:
```
drivers/gpu/drm/mediatek/mtk_cec.c:243:24: sparse: warning: symbol
'mtk_cec_driver' was not declared. Should it be static?
```

Fixes: 1e914a89ab7e ("drm/mediatek: mtk_cec: Switch to register as module_platform_driver")
Signed-off-by: Louis-Alexis Eyraud <louisalexis.eyraud@collabora.com>
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Link: https://patchwork.kernel.org/project/dri-devel/patch/20260429-mediatek-drm-fix-sparse-warnings-v1-3-d95c4d118b83@collabora.com/
Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
drivers/gpu/drm/mediatek/mtk_cec.c

index c7be530ca041f4480b9b1c71f70c046c12e4e9f8..b8ccd6e55bedbf32bb7e4dff99f264b0a77d80cb 100644 (file)
@@ -240,7 +240,7 @@ static const struct of_device_id mtk_cec_of_ids[] = {
 };
 MODULE_DEVICE_TABLE(of, mtk_cec_of_ids);
 
-struct platform_driver mtk_cec_driver = {
+static struct platform_driver mtk_cec_driver = {
        .probe = mtk_cec_probe,
        .remove = mtk_cec_remove,
        .driver = {