mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-28 19:46:58 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
879 B
Diff
25 lines
879 B
Diff
From 85d8f89f8014e71064e876bead42b55772aea077 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
|
|
@@ -214,9 +214,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);
|
|
|