aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/power
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-07-06 02:40:56 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-07-10 01:37:13 +0200
commit2f88e41a22ccfa95291c4df573f8ed4c6a71f29b (patch)
treee51881b14d66f045b50ca6e9c4b974a6e714c437 /kernel/power
parentMerge back earlier suspend/hibernation changes for v4.8. (diff)
downloadlinux-dev-2f88e41a22ccfa95291c4df573f8ed4c6a71f29b.tar.xz
linux-dev-2f88e41a22ccfa95291c4df573f8ed4c6a71f29b.zip
PM / hibernate: Add missing braces in hibernate_setup()
Make hibernate_setup() follow the coding style more closely by adding some missing braces to the if () statement in it. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'kernel/power')
-rw-r--r--kernel/power/hibernate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 126e24caa82e..b00f270d328e 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -1119,11 +1119,11 @@ static int __init resume_offset_setup(char *str)
static int __init hibernate_setup(char *str)
{
- if (!strncmp(str, "noresume", 8))
+ if (!strncmp(str, "noresume", 8)) {
noresume = 1;
- else if (!strncmp(str, "nocompress", 10))
+ } else if (!strncmp(str, "nocompress", 10)) {
nocompress = 1;
- else if (!strncmp(str, "no", 2)) {
+ } else if (!strncmp(str, "no", 2)) {
noresume = 1;
nohibernate = 1;
}