[GIT PULL] fbdev fixes and updates for v6.1-rc1

From: Helge Deller
Date: Sun Oct 09 2022 - 06:49:19 EST


Hi Linus,

please pull the fbdev fixes and updates for kernel 6.1-rc1.

Included is a fix for the smscufx USB graphics card to prevent a kernel crash
if it's plugged in/out too fast. The other patches are mostly small cleanups,
fixes in failure paths and code removal.

More details are in the commit tag.

Thanks,
Helge


The following changes since commit e8bc52cb8df80c31c73c726ab58ea9746e9ff734:

Merge tag 'driver-core-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core (2022-10-07 17:04:10 -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.1-rc1

for you to fetch changes up to 29926f1cd3535f565f200430d5b6a794543fe130:

fbdev: mb862xx: Fix check of return value from irq_of_parse_and_map() (2022-10-08 15:20:09 +0200)

----------------------------------------------------------------
fbdev fixes and updates for kernel 6.1-rc1:

- fixes an use-after-free in smscufx USB graphics driver,
- adds missing pci_disable_device() in tridentfb failure paths,
- correctly handle irq detection failure in mb862xx driver,
- fixes resume code in omapfb/dss,
- drops unused code in controlfb, tridentfb, arkfb, imxfb and udlfb,
- converts uvesafb to use scnprintf() instead of snprintf(),
- converts gbefb to use dev_groups,
- adds MODULE_DEVICE_TABLE() entry to vga16fb

----------------------------------------------------------------
Christophe Leroy (1):
fbdev: mb862xx: Fix check of return value from irq_of_parse_and_map()

Colin Ian King (1):
fbdev: udlfb: Remove redundant initialization to variable identical

Hyunwoo Kim (1):
fbdev: smscufx: Fix use-after-free in ufx_ops_open()

Jiapeng Chong (3):
fbdev: controlfb: Remove the unused function VAR_MATCH()
fbdev: tridentfb: Remove the unused function shadowmode_off()
fbdev: arkfb: Remove the unused function dac_read_reg()

Jiasheng Jiang (1):
fbdev: gbefb: Convert to use dev_groups

Jules Irenge (1):
fbdev: uvesafb: Convert snprintf to scnprintf

Ruan Jinjie (1):
fbdev: tridentfb: Fix missing pci_disable_device() in probe and remove

Shang XiaoJing (1):
fbdev: imxfb: Remove redundant dev_err() call

Zeng Heng (1):
fbdev: vga16fb: Add missing MODULE_DEVICE_TABLE() entry

Zhang Qilong (1):
fbdev: omapfb/dss: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync()

drivers/video/fbdev/arkfb.c | 8 --------
drivers/video/fbdev/controlfb.c | 7 -------
drivers/video/fbdev/gbefb.c | 20 +++++++-------------
drivers/video/fbdev/imxfb.c | 1 -
drivers/video/fbdev/mb862xx/mb862xxfbdrv.c | 2 +-
drivers/video/fbdev/omap2/omapfb/dss/dispc.c | 6 ++----
drivers/video/fbdev/omap2/omapfb/dss/dsi.c | 6 ++----
drivers/video/fbdev/omap2/omapfb/dss/dss.c | 6 ++----
drivers/video/fbdev/omap2/omapfb/dss/hdmi4.c | 6 ++----
drivers/video/fbdev/omap2/omapfb/dss/hdmi5.c | 6 ++----
drivers/video/fbdev/omap2/omapfb/dss/venc.c | 6 ++----
drivers/video/fbdev/smscufx.c | 14 +++++++++++++-
drivers/video/fbdev/tridentfb.c | 11 +----------
drivers/video/fbdev/udlfb.c | 2 +-
drivers/video/fbdev/uvesafb.c | 10 +++++-----
drivers/video/fbdev/vga16fb.c | 1 +
16 files changed, 41 insertions(+), 71 deletions(-)