Commit a63693a0 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Darren Hart (VMware)

platform/x86: dell-rbtn: constify rfkill_ops structures

Add const to rfkill_ops structures that are only passed as an argument
to the functions rfkill_alloc or samsung_new_rfkill. These arguments are
of type const, so such structures can be annotated with const.
Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent 3d59dfcd
...@@ -110,7 +110,7 @@ static int rbtn_rfkill_set_block(void *data, bool blocked) ...@@ -110,7 +110,7 @@ static int rbtn_rfkill_set_block(void *data, bool blocked)
return -EINVAL; return -EINVAL;
} }
static struct rfkill_ops rbtn_ops = { static const struct rfkill_ops rbtn_ops = {
.query = rbtn_rfkill_query, .query = rbtn_rfkill_query,
.set_block = rbtn_rfkill_set_block, .set_block = rbtn_rfkill_set_block,
}; };
......
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