1
0
Fork 0

dlm: constify kset_uevent_ops structure

Declare kset_uevent_ops structure as const as it is only passed as an
argument to the function kset_create_and_add. This argument is of type
const, so declare the structure as const.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David Teigland <teigland@redhat.com>
hifive-unleashed-5.1
Bhumika Goyal 2017-07-28 18:49:17 +05:30 committed by David Teigland
parent 3b0e761ba8
commit 417f7c59ed
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ static int dlm_uevent(struct kset *kset, struct kobject *kobj,
return 0;
}
static struct kset_uevent_ops dlm_uevent_ops = {
static const struct kset_uevent_ops dlm_uevent_ops = {
.uevent = dlm_uevent,
};