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@xxxxxxxxxxx> 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@xxxxxxxxxxx Signed-off-by: Zijun Hu <quic_zijuhu@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- 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@xxxxxxxxxxx are