From: Thomas Jespersen Date: Thu, 6 Apr 2017 20:58:14 +0000 (+0200) Subject: staging: unisys: visornic: Replace symbolic perms with octal X-Git-Tag: v4.12-rc1~84^2~259 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bca74ee5fec06efd5615102790ff1ff773a2f717;p=karo-tx-linux.git staging: unisys: visornic: Replace symbolic perms with octal Replace symbolic permissions S_IRUSR and S_IWUSR for their octal counterparts Signed-off-by: Thomas Jespersen Acked-by: David Kershner Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys/visornic/visornic_main.c index feece918e348..1008337473a8 100644 --- a/drivers/staging/unisys/visornic/visornic_main.c +++ b/drivers/staging/unisys/visornic/visornic_main.c @@ -2146,11 +2146,11 @@ static int visornic_init(void) if (!visornic_debugfs_dir) return err; - ret = debugfs_create_file("info", S_IRUSR, visornic_debugfs_dir, NULL, + ret = debugfs_create_file("info", 0400, visornic_debugfs_dir, NULL, &debugfs_info_fops); if (!ret) goto cleanup_debugfs; - ret = debugfs_create_file("enable_ints", S_IWUSR, visornic_debugfs_dir, + ret = debugfs_create_file("enable_ints", 0200, visornic_debugfs_dir, NULL, &debugfs_enable_ints_fops); if (!ret) goto cleanup_debugfs;