video/fb: fix compilation errors

enabling CONFIG_FB_HWCURSOR and CONFIG_FB_HWCURSORIMAGE causes a compile error: missing semicolon after a structure variable.

Signed-off-by: zhanxiaoqi <zhanxiaoqi@bytedance.com>
This commit is contained in:
zhanxiaoqi 2026-04-13 16:00:24 +08:00 committed by Xiang Xiao
parent 34fbaa15ee
commit f9fae3ed32

View file

@ -654,7 +654,7 @@ struct fb_cmap_s
struct fb_cursorimage_s
{
fb_coord_t width; /* Width of the cursor image in pixels */
fb_coord_t height /* Height of the cursor image in pixels */
fb_coord_t height; /* Height of the cursor image in pixels */
const uint8_t *image; /* Pointer to image data */
};
#endif