Hi Linus, please pull the latest fbdev updates and fixes. The majority of lines changed is due to a code style cleanup in the pnmtologo helper program. Arnd removed the omap1 osk driver and the SIS fb driver is now orphaned. Other than that it's the usual bunch of small fixes and cleanups, e.g. prevent possible divide-by-zero in various fb drivers if the pixclock is zero and various conversions to devm_platform*() and of_property*() functions. Thanks! Helge -------------- The following changes since commit eeac8ede17557680855031c6f305ece2378af326: Linux 6.3-rc2 (2023-03-12 16:36:44 -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.3-rc3 for you to fetch changes up to 29413f05fe34e8824551b91f660fde781249417d: fbdev: Use of_property_present() for testing DT property presence (2023-03-16 16:18:17 +0100) ---------------------------------------------------------------- fbdev updates for kernel 6.3-rc3: - Drop omap1 osk driver - Various potential divide by zero pixclock fixes - Add pixelclock and fb_check_var() to stifb - Code style cleanups and indenting fixes ---------------------------------------------------------------- Arnd Bergmann (1): fbdev: omapfb: remove omap1 osk driver Helge Deller (1): fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks Lucy Mielke (1): fbdev: omapfb: cleanup inconsistent indentation Lukas Bulwahn (1): MAINTAINERS: orphan SIS FRAMEBUFFER DRIVER Nikita Romanyuk (2): drivers: video: logo: fix code style issues in pnmtologo.c drivers: video: logo: add SPDX comment, remove GPL notice in pnmtologo.c Rob Herring (2): fbdev: Use of_property_read_bool() for boolean properties fbdev: Use of_property_present() for testing DT property presence Wei Chen (5): fbdev: tgafb: Fix potential divide by zero fbdev: nvidia: Fix potential divide by zero fbdev: intelfb: Fix potential divide by zero fbdev: lxfb: Fix potential divide by zero fbdev: au1200fb: Fix potential divide by zero Yang Li (4): fbdev: clps711x-fb: Use devm_platform_get_and_ioremap_resource() fbdev: pxa3xx-gcu: Use devm_platform_get_and_ioremap_resource() fbdev: wm8505fb: Use devm_platform_ioremap_resource() fbdev: xilinxfb: Use devm_platform_get_and_ioremap_resource() MAINTAINERS | 4 +- drivers/video/fbdev/amba-clcd.c | 2 +- drivers/video/fbdev/au1200fb.c | 3 + drivers/video/fbdev/bw2.c | 2 +- drivers/video/fbdev/cg3.c | 2 +- drivers/video/fbdev/clps711x-fb.c | 3 +- drivers/video/fbdev/geode/lxfb_core.c | 3 + drivers/video/fbdev/intelfb/intelfbdrv.c | 3 + drivers/video/fbdev/nvidia/nvidia.c | 2 + drivers/video/fbdev/offb.c | 4 +- drivers/video/fbdev/omap/Makefile | 1 - drivers/video/fbdev/omap/lcd_osk.c | 86 --- drivers/video/fbdev/omap/omapfb_main.c | 30 +- .../fbdev/omap2/omapfb/dss/omapdss-boot-init.c | 2 +- drivers/video/fbdev/pxa3xx-gcu.c | 3 +- drivers/video/fbdev/sm501fb.c | 4 +- drivers/video/fbdev/stifb.c | 27 + drivers/video/fbdev/tcx.c | 3 +- drivers/video/fbdev/tgafb.c | 3 + drivers/video/fbdev/wm8505fb.c | 4 +- drivers/video/fbdev/xilinxfb.c | 6 +- drivers/video/logo/pnmtologo.c | 674 ++++++++++----------- 22 files changed, 409 insertions(+), 462 deletions(-) delete mode 100644 drivers/video/fbdev/omap/lcd_osk.c