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

Commit 1c9962b4 authored by Li Zefan's avatar Li Zefan Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: add missing single_release()



The debug file is opened with single_open(), but there's no
single_release().

Signed-off-by: default avatarLi Zefan <lizefan@huawei.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b9b9b351
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -233,7 +233,8 @@ static const struct file_operations fops = {
	.open = open_debug_level,
	.read = seq_read,
	.llseek = seq_lseek,
	.write = write_debug_level
	.write = write_debug_level,
	.release = single_release,
};

int __init rtllib_init(void)