Commit b3d76e80 authored by Derek Robson's avatar Derek Robson Committed by Greg Kroah-Hartman

Staging: unisys: visorbus: visorbus_main.c: fixed style

Changed file permissions to octal sytle.
Found using checkpatch.
Acked-by: default avatarDavid Kershner <david.kershner@unisys.com>
Signed-off-by: default avatarDerek Robson <robsonde@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9eedb509
...@@ -990,7 +990,7 @@ create_bus_instance(struct visor_device *dev) ...@@ -990,7 +990,7 @@ create_bus_instance(struct visor_device *dev)
goto err_hdr_info; goto err_hdr_info;
} }
dev->debugfs_client_bus_info = dev->debugfs_client_bus_info =
debugfs_create_file("client_bus_info", S_IRUSR | S_IRGRP, debugfs_create_file("client_bus_info", 0440,
dev->debugfs_dir, dev, dev->debugfs_dir, dev,
&client_bus_info_debugfs_fops); &client_bus_info_debugfs_fops);
if (!dev->debugfs_client_bus_info) { if (!dev->debugfs_client_bus_info) {
...@@ -1343,10 +1343,10 @@ visorbus_exit(void) ...@@ -1343,10 +1343,10 @@ visorbus_exit(void)
debugfs_remove_recursive(visorbus_debugfs_dir); debugfs_remove_recursive(visorbus_debugfs_dir);
} }
module_param_named(forcematch, visorbus_forcematch, int, S_IRUGO); module_param_named(forcematch, visorbus_forcematch, int, 0444);
MODULE_PARM_DESC(visorbus_forcematch, MODULE_PARM_DESC(visorbus_forcematch,
"1 to force a successful dev <--> drv match"); "1 to force a successful dev <--> drv match");
module_param_named(forcenomatch, visorbus_forcenomatch, int, S_IRUGO); module_param_named(forcenomatch, visorbus_forcenomatch, int, 0444);
MODULE_PARM_DESC(visorbus_forcenomatch, MODULE_PARM_DESC(visorbus_forcenomatch,
"1 to force an UNsuccessful dev <--> drv match"); "1 to force an UNsuccessful dev <--> drv match");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment