]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
6.1-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 Sep 2024 16:00:59 +0000 (18:00 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 Sep 2024 16:00:59 +0000 (18:00 +0200)
added patches:
fbdev-offb-fix-up-missing-cleanup.h.patch

queue-6.1/fbdev-offb-fix-up-missing-cleanup.h.patch [new file with mode: 0644]
queue-6.1/series

diff --git a/queue-6.1/fbdev-offb-fix-up-missing-cleanup.h.patch b/queue-6.1/fbdev-offb-fix-up-missing-cleanup.h.patch
new file mode 100644 (file)
index 0000000..38befcf
--- /dev/null
@@ -0,0 +1,33 @@
+From 1e85968a040ec440c9cc2d4a2b791a026561edf9 Mon Sep 17 00:00:00 2001
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Date: Sun, 1 Sep 2024 17:58:23 +0200
+Subject: fbdev: offb: fix up missing cleanup.h
+
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+In commit 96ee5c5712ef ("fbdev: offb: replace of_node_put with
+__free(device_node)"), __free() was added, but not cleanup.h so it broke
+the build.  Fix this up.
+
+Reported-by: Guenter Roeck <linux@roeck-us.net>
+Link: https://lore.kernel.org/r/4f4ac35e-e31c-4f67-b809-a5de4d4b273a@roeck-us.net
+Fixes: 96ee5c5712ef ("fbdev: offb: replace of_node_put with __free(device_node)")
+Cc: Julia Lawall <julia.lawall@inria.fr>
+Cc: Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>
+Cc: Helge Deller <deller@gmx.de>
+Cc: Sasha Levin <sashal@kernel.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/video/fbdev/offb.c |    1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/video/fbdev/offb.c
++++ b/drivers/video/fbdev/offb.c
+@@ -27,6 +27,7 @@
+ #include <linux/ioport.h>
+ #include <linux/pci.h>
+ #include <linux/platform_device.h>
++#include <linux/cleanup.h>
+ #include <asm/io.h>
+ #ifdef CONFIG_PPC32
index d893c157fe3cbfa2610b82f2496de6cf3bc4e8f2..f0f23e2768ac984ed808c37f6d79de12522028f1 100644 (file)
@@ -68,3 +68,4 @@ igc-fix-reset-adapter-logics-when-tx-mode-change.patch
 igc-fix-qbv-tx-latency-by-setting-gtxoffset.patch
 scsi-aacraid-fix-double-free-on-probe-failure.patch
 apparmor-fix-policy_unpack_test-on-big-endian-system.patch
+fbdev-offb-fix-up-missing-cleanup.h.patch