]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm: verisilicon: suppress snprintf warning for pixel clock name
authorIcenowy Zheng <zhengxingda@iscas.ac.cn>
Sat, 7 Feb 2026 01:32:55 +0000 (09:32 +0800)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 9 Feb 2026 09:44:36 +0000 (10:44 +0100)
Although it's generally expected that the pixel clock ID will only have
one decimal digit, this isn't enforced in vs_dc.c source code, and the
compiler will argue about the buffer being not long enough.

Enlarge the snprintf() buffer for generating pixel clock name to be
enough for a UINT_MAX pixel clock ID in order to suppress the compiler
warning.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202602060154.ONBYvM9m-lkp@intel.com/
Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260207013255.2075294-1-zhengxingda@iscas.ac.cn
drivers/gpu/drm/verisilicon/vs_dc.c

index ba1b3f261a3aefee9aa741f1ac71f1964b9de5c7..5f629d2d4beac0a42c7a08e36d56f9327117b3ce 100644 (file)
@@ -46,8 +46,8 @@ static int vs_dc_probe(struct platform_device *pdev)
        struct vs_dc *dc;
        void __iomem *regs;
        unsigned int port_count, i;
-       /* pix0/pix1 */
-       char pixclk_name[5];
+       /* pix%u */
+       char pixclk_name[14];
        int irq, ret;
 
        if (!dev->of_node) {