summaryrefslogtreecommitdiffstats
path: root/target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch')
-rw-r--r--target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch b/target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch
deleted file mode 100644
index bc6065bce8..0000000000
--- a/target/linux/bcm27xx/patches-6.1/950-0060-arm64-setup-Fix-build-warning.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From eedea0d30a542f255626876be44929af8efc337a Mon Sep 17 00:00:00 2001
-From: Maxime Ripard <maxime@cerno.tech>
-Date: Mon, 6 Jun 2022 11:02:16 +0200
-Subject: [PATCH] arm64: setup: Fix build warning
-
-Signed-off-by: Maxime Ripard <maxime@cerno.tech>
----
- arch/arm64/kernel/setup.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
---- a/arch/arm64/kernel/setup.c
-+++ b/arch/arm64/kernel/setup.c
-@@ -222,9 +222,9 @@ static void __init request_standard_reso
- size_t res_size;
-
- kernel_code.start = __pa_symbol(_stext);
-- kernel_code.end = __pa_symbol(__init_begin - 1);
-+ kernel_code.end = __pa_symbol(__init_begin) - 1;
- kernel_data.start = __pa_symbol(_sdata);
-- kernel_data.end = __pa_symbol(_end - 1);
-+ kernel_data.end = __pa_symbol(_end) - 1;
- insert_resource(&iomem_resource, &kernel_code);
- insert_resource(&iomem_resource, &kernel_data);
-