* [merged mm-nonmm-stable] cpu-remove-needless-return-in-void-api-suspend_enable_secondary_cpus.patch removed from -mm tree
@ 2025-03-17 5:32 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-03-17 5:32 UTC (permalink / raw)
To: mm-commits, quic_zijuhu, akpm
The quilt patch titled
Subject: cpu: remove needless return in void API suspend_enable_secondary_cpus()
has been removed from the -mm tree. Its filename was
cpu-remove-needless-return-in-void-api-suspend_enable_secondary_cpus.patch
This patch was dropped because it was merged into the mm-nonmm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Zijun Hu <quic_zijuhu@quicinc.com>
Subject: cpu: remove needless return in void API suspend_enable_secondary_cpus()
Date: Fri, 21 Feb 2025 05:02:07 -0800
Remove needless 'return' in void API suspend_enable_secondary_cpus() since
both the API and thaw_secondary_cpus() are void functions.
Link: https://lkml.kernel.org/r/20250221-rmv_return-v1-2-cc8dff275827@quicinc.com
Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
include/linux/cpu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/include/linux/cpu.h~cpu-remove-needless-return-in-void-api-suspend_enable_secondary_cpus
+++ a/include/linux/cpu.h
@@ -148,7 +148,7 @@ static inline int suspend_disable_second
}
static inline void suspend_enable_secondary_cpus(void)
{
- return thaw_secondary_cpus();
+ thaw_secondary_cpus();
}
#else /* !CONFIG_PM_SLEEP_SMP */
_
Patches currently in -mm which might be from quic_zijuhu@quicinc.com are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-03-17 5:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-17 5:32 [merged mm-nonmm-stable] cpu-remove-needless-return-in-void-api-suspend_enable_secondary_cpus.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.