From: Bhumika Goyal Date: Mon, 28 Aug 2017 18:08:15 +0000 (+0530) Subject: IPMI: make ipmi_poweroff_handler const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e6dd76a6e9c20a6cc63406061f216d4eb7c9ae7b;p=linux.git 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 Signed-off-by: Corey Minyard --- diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c index 9f2e3be2c5b8b..cd0f41fd4a510 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 };