aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-08-28 23:38:15 +0530
committerCorey Minyard <cminyard@mvista.com>2017-09-27 16:03:45 -0500
commite6dd76a6e9c20a6cc63406061f216d4eb7c9ae7b (patch)
treece163e3425af4012798f8e79cb8e0b4efc5b63ed /drivers/char
parentipmi: Make IPMI panic strings always available (diff)
downloadlinux-dev-e6dd76a6e9c20a6cc63406061f216d4eb7c9ae7b.tar.xz
linux-dev-e6dd76a6e9c20a6cc63406061f216d4eb7c9ae7b.zip
IPMI: make ipmi_poweroff_handler const
Make this const as it is only passed to a const argument of the function ipmi_create_user. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/ipmi/ipmi_poweroff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c
index 9f2e3be2c5b8..cd0f41fd4a51 100644
--- a/drivers/char/ipmi/ipmi_poweroff.c
+++ b/drivers/char/ipmi/ipmi_poweroff.c
@@ -133,7 +133,7 @@ static void receive_handler(struct ipmi_recv_msg *recv_msg, void *handler_data)
complete(comp);
}
-static struct ipmi_user_hndl ipmi_poweroff_handler = {
+static const struct ipmi_user_hndl ipmi_poweroff_handler = {
.ipmi_recv_hndl = receive_handler
};