Commit ce289e89 authored by Marcin Slusarz's avatar Marcin Slusarz Committed by Linus Torvalds

suspend: fix section mismatch warning - register_nosave_region

WARNING: vmlinux.o(.text+0xe684): Section mismatch in reference from the function register_nosave_region() to the function .init.text:__register_nosave_region()
  The function register_nosave_region() references
  the function __init __register_nosave_region().
  This is often because register_nosave_region lacks a __init
  annotation or the annotation of __register_nosave_region is wrong.

register_nosave_region calls __init function and is called only from
__init functions
Signed-off-by: default avatarMarcin Slusarz <marcin.slusarz@gmail.com>
Acked-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Cc: Pavel Machek <pavel@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6acb2ece
...@@ -217,11 +217,11 @@ struct platform_hibernation_ops { ...@@ -217,11 +217,11 @@ struct platform_hibernation_ops {
#ifdef CONFIG_HIBERNATION #ifdef CONFIG_HIBERNATION
/* kernel/power/snapshot.c */ /* kernel/power/snapshot.c */
extern void __register_nosave_region(unsigned long b, unsigned long e, int km); extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
static inline void register_nosave_region(unsigned long b, unsigned long e) static inline void __init register_nosave_region(unsigned long b, unsigned long e)
{ {
__register_nosave_region(b, e, 0); __register_nosave_region(b, e, 0);
} }
static inline void register_nosave_region_late(unsigned long b, unsigned long e) static inline void __init register_nosave_region_late(unsigned long b, unsigned long e)
{ {
__register_nosave_region(b, e, 1); __register_nosave_region(b, e, 1);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment