Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e37dcbfb authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/efivarfs/super.c: use static const for dentry_operations



...like other filesystems.

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Matthew Garrett <matthew.garrett@nebula.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f6187769
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ static int efivarfs_d_hash(const struct dentry *dentry, struct qstr *qstr)
	return 0;
}

static struct dentry_operations efivarfs_d_ops = {
static const struct dentry_operations efivarfs_d_ops = {
	.d_compare = efivarfs_d_compare,
	.d_hash = efivarfs_d_hash,
	.d_delete = always_delete_dentry,