From patchwork Tue Sep 17 15:45:40 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Helge Deller X-Patchwork-Id: 13806269 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AA24B188A23; Tue, 17 Sep 2024 15:45:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726587945; cv=none; b=Sfx8uQR23Yp0THrTRTEMi1WZjQtDU8+5ItA2t4YGHXS3TN8PArpeXJ0xKaBK4HLf3z37XELGfllDD7hmTPZIKORnWK4Nm1VZl5GpuBo4lSIFmaDApHpye9MmtN2c7ki2P8hqR1eRQrUsM++dxK78GJ2DHhlE7zzM5fRWUNNgYpE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726587945; c=relaxed/simple; bh=KWtkj0GL9S0bCz/hrLAjMTZkpobKDEnlNQquUiw4hWY=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=hwTsvHg3XlVLiYPMhJGkEfdRW4n2mY2L6Nau56N2LYATNwNcFvXwPW5kSHNa/Lj+/5xBLTKD0U02YMhRN9Cwe8fxNE5WO9UV+M4aDPdFvWzB/Wtmd8InXOBUAjimGcFp0Wv67Wfse1F7Pog7J5l3Zncy7V+nwMAV3lRa51szGHM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oyoHUmUG; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="oyoHUmUG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3638C4CEC5; Tue, 17 Sep 2024 15:45:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1726587945; bh=KWtkj0GL9S0bCz/hrLAjMTZkpobKDEnlNQquUiw4hWY=; h=Date:From:To:Subject:From; b=oyoHUmUG6QRDskcwLX+4a6Eqfo/Upl5AQkkSjeX1VjqxVTLJL0fQHCOPlog1RQxVf r0O7kcDy6igsh7DiMv2Cbbdf88Xnv2xaG8wic2albBDExAHsVA20Ao7iSKmvyttN/1 dGI6kwau+KG7F0tWiO75IUSQ7wIvl8QNGB3i2YUgkiQF+omNFhgjTkSBRUhNdIOO+1 HwatWXJF/gKnQC+LDylCrl+4sEsL6Ley9DrJuZWRCNrjV5Yq8kWfOTDg2om8ACtKNr 0syy7bBb0ZAXOoipRCA7yeUSt01LYbpo6hm4mzvlisy1Yn03EDp7lTMUQiPVKDcT+J 8XZ6uOC36ieMg== Date: Tue, 17 Sep 2024 17:45:40 +0200 From: Helge Deller To: Linus Torvalds , linux-kernel@vger.kernel.org, linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org Subject: [GIT PULL] fbdev fixes and cleanups for v6.12-rc1 Message-ID: Precedence: bulk X-Mailing-List: linux-fbdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Hi Linus, please pull some updates and cleanups for the fbdev drivers for kernel 6.12-rc1. This patchset includes a crashfix for xen and a possible use-after-free fix in pxafb. Thanks! Helge ---------------------------------------------------------------- The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b: Linux 6.11-rc1 (2024-07-28 14:19:55 -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.12-rc1 for you to fetch changes up to de5e89b6654ea0b021a5737e0f55fc6bed625550: fbdev: omapfb: Fix typo in comment (2024-09-11 20:53:04 +0200) ---------------------------------------------------------------- fbdev fixes and updates for 6.12-rc1: - video: Reduce code when CONFIG_HAS_IOPORT=n - xenfb: Fix crash by assigning fb_info->device - pxafb: Fix possible use after free in pxafb_task() - efifb: Introduce and use new devm_register_framebuffer() function - mmpfb: Utilize devm_clk_get_enabled() helpers - various typo fixes and code cleanups ---------------------------------------------------------------- Andrew Kreimer (1): fbdev: omapfb: Fix typo in comment Chen Ni (3): fbdev: pxa3xx-gcu: Convert comma to semicolon fbdev: imsttfb: convert comma to semicolon fbdev: hyperv_fb: Convert comma to semicolon Christophe JAILLET (3): fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() fbdev: omapfb: panel-sony-acx565akm: Simplify show_cabc_available_modes() fbdev: omapfb: Use sysfs_emit_at() to simplify code Jason Andryuk (1): fbdev: xen-fbfront: Assign fb_info->device Kaixin Wang (1): fbdev: pxafb: Fix possible use after free in pxafb_task() Niklas Schnelle (1): video: Handle HAS_IOPORT dependencies Thomas Weißschuh (4): fbdev: Introduce devm_register_framebuffer() fbdev: efifb: Register sysfs groups through driver core fbdev: efifb: Use devm_register_framebuffer() fbdev: efifb: Use driver-private screen_info for sysfs ying zuxin (1): fbdev: mmp: Use devm_clk_get_enabled() helpers drivers/video/fbdev/core/fbmem.c | 30 +++++++++++ drivers/video/fbdev/efifb.c | 27 +++------- drivers/video/fbdev/hpfb.c | 1 + drivers/video/fbdev/hyperv_fb.c | 2 +- drivers/video/fbdev/imsttfb.c | 4 +- drivers/video/fbdev/mmp/hw/mmp_ctrl.c | 6 +-- drivers/video/fbdev/omap/omapfb_main.c | 36 ++++++-------- .../omap2/omapfb/displays/panel-sony-acx565akm.c | 15 +++--- drivers/video/fbdev/omap2/omapfb/dss/hdmi.h | 2 +- drivers/video/fbdev/pxa3xx-gcu.c | 4 +- drivers/video/fbdev/pxafb.c | 1 + drivers/video/fbdev/xen-fbfront.c | 1 + include/linux/fb.h | 1 + include/video/vga.h | 58 ++++++++++++++++------ 14 files changed, 111 insertions(+), 77 deletions(-)