[PATCH] ntsync: Set the permissions to be 0666

Mike Lothian <[email protected]> Fri, 14 Feb 2025 12:28:00 +0000
Newsgroups gmane.linux.kernel.api,gmane.comp.video.dri.devel,gmane.linux.kernel,gmane.comp.emulators.wine.devel
Message-ID <[email protected]>
This allows ntsync to be usuable by non-root processes out of the box

Signed-off-by: Mike Lothian <[email protected]>
---
 drivers/misc/ntsync.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/misc/ntsync.c b/drivers/misc/ntsync.c
index 055395cde42b..586b86243e1d 100644
--- a/drivers/misc/ntsync.c
+++ b/drivers/misc/ntsync.c
@@ -1208,6 +1208,7 @@ static struct miscdevice ntsync_misc = {
 	.minor		= MISC_DYNAMIC_MINOR,
 	.name		= NTSYNC_NAME,
 	.fops		= &ntsync_fops,
+	.mode		= 0666, // Setting file permissions to 0666
 };
 
 module_misc_device(ntsync_misc);
-- 
2.48.1