aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2021-10-05 20:51:18 +0200
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2021-10-05 23:54:18 +0200
commiteb3a99bc183e36922b9e8314620e4e64964bcaf0 (patch)
tree9f810d6d91e43a3e3dd05ba6b0c9b450b96be5bc /target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch
parent81ba544f88e6fd3252fb2f7dd9103c4bd9f83bfb (diff)
downloadupstream-eb3a99bc183e36922b9e8314620e4e64964bcaf0.tar.gz
upstream-eb3a99bc183e36922b9e8314620e4e64964bcaf0.tar.bz2
upstream-eb3a99bc183e36922b9e8314620e4e64964bcaf0.zip
bcm27xx: remove obsolete kernel 5.4
With the upgrade to kernel 5.10 per default the old version is no longer required to be in tree. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch')
-rw-r--r--target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch b/target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch
deleted file mode 100644
index 4adbe8a03c..0000000000
--- a/target/linux/bcm27xx/patches-5.4/950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 0a5e493ea20d9d24d0808d8a4e05a97deb19b423 Mon Sep 17 00:00:00 2001
-From: Dave Stevenson <dave.stevenson@raspberrypi.com>
-Date: Fri, 3 Jul 2020 16:13:33 +0100
-Subject: [PATCH] drm/vc4: FKMS: Put includes in alphabetical order,
- and use <> instead of ""
-
-Reorder the includes, and use the system include paths rather than
-local ones
-
-Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
----
- drivers/gpu/drm/vc4/vc4_firmware_kms.c | 29 +++++++++++++-------------
- 1 file changed, 15 insertions(+), 14 deletions(-)
-
---- a/drivers/gpu/drm/vc4/vc4_firmware_kms.c
-+++ b/drivers/gpu/drm/vc4/vc4_firmware_kms.c
-@@ -14,25 +14,26 @@
- * Pi's firmware display stack.
- */
-
-+#include <drm/drm_atomic_helper.h>
-+#include <drm/drm_crtc_helper.h>
-+#include <drm/drm_drv.h>
-+#include <drm/drm_fb_cma_helper.h>
-+#include <drm/drm_fourcc.h>
-+#include <drm/drm_gem_framebuffer_helper.h>
-+#include <drm/drm_plane_helper.h>
-+#include <drm/drm_probe_helper.h>
-+#include <drm/drm_vblank.h>
-+
-+#include <linux/component.h>
-+#include <linux/clk.h>
-+#include <linux/debugfs.h>
- #include <linux/module.h>
-
--#include "drm/drm_atomic_helper.h"
--#include "drm/drm_gem_framebuffer_helper.h"
--#include "drm/drm_plane_helper.h"
--#include "drm/drm_crtc_helper.h"
--#include "drm/drm_fourcc.h"
--#include "drm/drm_probe_helper.h"
--#include "drm/drm_drv.h"
--#include "drm/drm_vblank.h"
--#include "linux/clk.h"
--#include "linux/debugfs.h"
--#include "drm/drm_fb_cma_helper.h"
--#include "linux/component.h"
--#include "linux/of_device.h"
-+#include <soc/bcm2835/raspberrypi-firmware.h>
-+
- #include "vc4_drv.h"
- #include "vc4_regs.h"
- #include "vc_image_types.h"
--#include <soc/bcm2835/raspberrypi-firmware.h>
-
- int fkms_max_refresh_rate = 85;
- module_param(fkms_max_refresh_rate, int, 0644);