Hi Linus, please pull some fbdev fixes & cleanups for kernel 6.5-rc3. Just the usual bunch of code cleanups in various drivers, this time mostly in vgacon and imxfb. Thanks! Helge -------------- The following changes since commit 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5: Linux 6.5-rc1 (2023-07-09 13:53:13 -0700) are available in the Git repository at: http://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git tags/fbdev-for-6.5-rc3 for you to fetch changes up to e8812acb5bf724f2fc23a500e590c776ebda7b0a: fbdev: Explicitly include correct DT includes (2023-07-20 07:56:30 +0200) ---------------------------------------------------------------- fbdev fixes and cleanups for 6.5-rc3: - Code cleanup in vgacon (Jiri Slaby) - Explicitly include correct DT includes (Rob Herring) - imxfb code cleanup (Yangtao Li, Martin Kaiser) - kyrofb: make arrays const and smaller (Colin Ian King) - ep93xx-fb: return value check fix (Yuanjun Gong) - au1200fb: add missing IRQ check (Zhang Shurong) ---------------------------------------------------------------- Colin Ian King (1): fbdev: kyro: make some const read-only arrays static and reduce type size Jiri Slaby (SUSE) (7): vgacon: switch vgacon_scrolldelta() and vgacon_restore_screen() vgacon: remove unneeded forward declarations vgacon: remove unused xpos from vgacon_set_cursor_size() vgacon: let vgacon_doresize() return void vgacon: cache vc_cell_height in vgacon_cursor() sticon: make sticon_set_def_font() void and remove op parameter fbcon: remove unused display (p) from fbcon_redraw() Martin Kaiser (2): fbdev: imxfb: warn about invalid left/right margin fbdev: imxfb: switch to DEFINE_SIMPLE_DEV_PM_OPS Rob Herring (1): fbdev: Explicitly include correct DT includes Yangtao Li (4): fbdev: imxfb: Removed unneeded release_mem_region fbdev: imxfb: Convert to devm_kmalloc_array() fbdev: imxfb: Convert to devm_platform_ioremap_resource() fbdev: imxfb: remove unneeded labels Yuanjun Gong (1): fbdev: ep93xx-fb: fix return value check in ep93xxfb_probe Zhang Shurong (1): fbdev: au1200fb: Fix missing IRQ check in au1200fb_drv_probe drivers/video/console/sticon.c | 12 ++-- drivers/video/console/vgacon.c | 74 ++++++++-------------- drivers/video/fbdev/au1200fb.c | 3 + drivers/video/fbdev/bw2.c | 3 +- drivers/video/fbdev/cg14.c | 3 +- drivers/video/fbdev/cg3.c | 3 +- drivers/video/fbdev/cg6.c | 3 +- drivers/video/fbdev/core/fbcon.c | 7 +- drivers/video/fbdev/ep93xx-fb.c | 4 +- drivers/video/fbdev/ffb.c | 3 +- drivers/video/fbdev/grvga.c | 3 +- drivers/video/fbdev/imxfb.c | 48 ++++++-------- drivers/video/fbdev/kyro/STG4000InitDevice.c | 10 +-- drivers/video/fbdev/leo.c | 3 +- drivers/video/fbdev/mb862xx/mb862xxfb_accel.c | 4 +- drivers/video/fbdev/mb862xx/mb862xxfbdrv.c | 6 +- .../fbdev/omap2/omapfb/displays/panel-dsi-cm.c | 2 +- drivers/video/fbdev/p9100.c | 3 +- drivers/video/fbdev/platinumfb.c | 4 +- drivers/video/fbdev/sbuslib.c | 2 +- drivers/video/fbdev/sunxvr1000.c | 3 +- drivers/video/fbdev/sunxvr2500.c | 2 +- drivers/video/fbdev/sunxvr500.c | 2 +- drivers/video/fbdev/tcx.c | 3 +- drivers/video/fbdev/xilinxfb.c | 5 +- 25 files changed, 97 insertions(+), 118 deletions(-)