Removed because it is upstream:
generic/pending-5.15/540-ksmbd-only-v2-leases-handle-the-directory.patch
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=81ea755b8fa57ce186f56f14b709cf491c2a5505
Manually Adapted the following patches:
ath79/patches-5.15/900-unaligned_access_hacks.patch
ipq806x/patches-5.15/113-v5.19-03-PM-devfreq-Rework-freq_table-to-be-local-to-devfr.patch
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 26d1d52403)
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From e2d375bf9ec7803e55e6885ce09e9c497a956114 Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Thu, 28 Apr 2022 16:11:20 +0100
|
|
Subject: [PATCH] Revert "fbdev: Fix unregistering of framebuffers
|
|
without device"
|
|
|
|
This reverts commit 2388f826cdc9af2651991adc0feb79de9bdf2232.
|
|
---
|
|
drivers/video/fbdev/core/fbmem.c | 9 +--------
|
|
1 file changed, 1 insertion(+), 8 deletions(-)
|
|
|
|
--- a/drivers/video/fbdev/core/fbmem.c
|
|
+++ b/drivers/video/fbdev/core/fbmem.c
|
|
@@ -1635,14 +1635,7 @@ static void do_remove_conflicting_frameb
|
|
* If it's not a platform device, at least print a warning. A
|
|
* fix would add code to remove the device from the system.
|
|
*/
|
|
- if (!device) {
|
|
- /* TODO: Represent each OF framebuffer as its own
|
|
- * device in the device hierarchy. For now, offb
|
|
- * doesn't have such a device, so unregister the
|
|
- * framebuffer as before without warning.
|
|
- */
|
|
- do_unregister_framebuffer(registered_fb[i]);
|
|
- } else if (dev_is_platform(device)) {
|
|
+ if (dev_is_platform(device)) {
|
|
registered_fb[i]->forced_out = true;
|
|
platform_device_unregister(to_platform_device(device));
|
|
} else {
|