mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
1c28058710
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.148
Removed upstreamed:
generic/hack-5.15/321-powerpc_crtsavres_prereq.patch[1]
Manually rebased:
target/linux/octeontx/patches-5.15/0004-PCI-add-quirk-for-Gateworks-PLX-PEX860x-switch-with-.patch[2]
All other patches automatically rebased.
1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.148&id=0b11a145eb00d51f7ef18cfcae587b93f9adb1e9
2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit?h=v5.15.148&id=b67064bd372300a75293efbbc70624996dccffd4
Build system: x86_64
Build-tested: ramips/tplink_archer-a6-v3
Run-tested: ramips/tplink_archer-a6-v3
Signed-off-by: John Audia <therealgraysky@proton.me>
(cherry picked from commit 99c9d8abd6
)
[Refresh on OpenWrt 23.05]
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
30 lines
964 B
Diff
30 lines
964 B
Diff
From 9cc2092a4694ab71d3bc6bc066c495a205a4f636 Mon Sep 17 00:00:00 2001
|
|
From: Tim Gover <tim.gover@raspberrypi.org>
|
|
Date: Thu, 22 Oct 2020 15:30:55 +0100
|
|
Subject: [PATCH] watchdog: bcm2835: Ignore params after the partition
|
|
number
|
|
|
|
Use sscanf to extract the partition number and ignore extra parameters
|
|
which are only relevant to other reboot notifiers.
|
|
---
|
|
drivers/watchdog/bcm2835_wdt.c | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/watchdog/bcm2835_wdt.c
|
|
+++ b/drivers/watchdog/bcm2835_wdt.c
|
|
@@ -127,10 +127,12 @@ static int bcm2835_restart(struct watchd
|
|
{
|
|
struct bcm2835_wdt *wdt = watchdog_get_drvdata(wdog);
|
|
|
|
- unsigned long long val;
|
|
+ unsigned long val;
|
|
u8 partition = 0;
|
|
|
|
- if (data && !kstrtoull(data, 0, &val) && val <= 63)
|
|
+ // Allow extra arguments separated by spaces after
|
|
+ // the partition number.
|
|
+ if (data && sscanf(data, "%lu", &val) && val < 63)
|
|
partition = val;
|
|
|
|
__bcm2835_restart(wdt, partition);
|