The patch titled PM: Make suspend_ops static has been removed from the -mm tree. Its filename was pm-make-suspend_ops-static.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: PM: Make suspend_ops static From: Rafael J. Wysocki <rjw@xxxxxxx> The variable suspend_ops representing the set of global platform-specific suspend-related operations, used by the PM core, need not be exported outside of kernel/power/main.c . Make it static. Signed-off-by: Rafael J. Wysocki <rjw@xxxxxxx> Acked-by: Pavel Machek <pavel@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/suspend.h | 2 -- kernel/power/main.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff -puN include/linux/suspend.h~pm-make-suspend_ops-static include/linux/suspend.h --- a/include/linux/suspend.h~pm-make-suspend_ops-static +++ a/include/linux/suspend.h @@ -79,8 +79,6 @@ struct platform_suspend_ops { }; #ifdef CONFIG_SUSPEND -extern struct platform_suspend_ops *suspend_ops; - /** * suspend_set_ops - set platform dependent suspend operations * @ops: The new suspend operations to set. diff -puN kernel/power/main.c~pm-make-suspend_ops-static kernel/power/main.c --- a/kernel/power/main.c~pm-make-suspend_ops-static +++ a/kernel/power/main.c @@ -32,7 +32,7 @@ DEFINE_MUTEX(pm_mutex); /* This is just an arbitrary number */ #define FREE_PAGE_NUMBER (100) -struct platform_suspend_ops *suspend_ops; +static struct platform_suspend_ops *suspend_ops; /** * suspend_set_ops - Set the global suspend method table. _ Patches currently in -mm which might be from rjw@xxxxxxx are origin.patch git-acpi.patch revert-x86_64-mm-cpa-einval.patch shrink_slab-handle-bad-shrinkers.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html