mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
driver: base: Replace symbolic permissions with octal permissions
Resolve following checkpatch issue, Replace symbolic permissions with octal permissions Signed-off-by: Jinchao Wang <wjc@cdjrlc.com> Link: https://lore.kernel.org/r/20210626094606.53152-1-wjc@cdjrlc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fc7a6209d5
commit
16b0dd4092
2 changed files with 4 additions and 4 deletions
|
@ -195,7 +195,7 @@ static ssize_t unbind_store(struct device_driver *drv, const char *buf,
|
||||||
bus_put(bus);
|
bus_put(bus);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
static DRIVER_ATTR_IGNORE_LOCKDEP(unbind, S_IWUSR, NULL, unbind_store);
|
static DRIVER_ATTR_IGNORE_LOCKDEP(unbind, 0200, NULL, unbind_store);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Manually attach a device to a driver.
|
* Manually attach a device to a driver.
|
||||||
|
@ -221,7 +221,7 @@ static ssize_t bind_store(struct device_driver *drv, const char *buf,
|
||||||
bus_put(bus);
|
bus_put(bus);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
static DRIVER_ATTR_IGNORE_LOCKDEP(bind, S_IWUSR, NULL, bind_store);
|
static DRIVER_ATTR_IGNORE_LOCKDEP(bind, 0200, NULL, bind_store);
|
||||||
|
|
||||||
static ssize_t drivers_autoprobe_show(struct bus_type *bus, char *buf)
|
static ssize_t drivers_autoprobe_show(struct bus_type *bus, char *buf)
|
||||||
{
|
{
|
||||||
|
@ -767,7 +767,7 @@ static ssize_t bus_uevent_store(struct bus_type *bus,
|
||||||
* DEVICE_ATTR_WO(uevent), which would cause a clash with the with the store
|
* DEVICE_ATTR_WO(uevent), which would cause a clash with the with the store
|
||||||
* function name.
|
* function name.
|
||||||
*/
|
*/
|
||||||
static struct bus_attribute bus_attr_uevent = __ATTR(uevent, S_IWUSR, NULL,
|
static struct bus_attribute bus_attr_uevent = __ATTR(uevent, 0200, NULL,
|
||||||
bus_uevent_store);
|
bus_uevent_store);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1180,7 +1180,7 @@ static const struct file_operations wakeup_sources_stats_fops = {
|
||||||
|
|
||||||
static int __init wakeup_sources_debugfs_init(void)
|
static int __init wakeup_sources_debugfs_init(void)
|
||||||
{
|
{
|
||||||
debugfs_create_file("wakeup_sources", S_IRUGO, NULL, NULL,
|
debugfs_create_file("wakeup_sources", 0444, NULL, NULL,
|
||||||
&wakeup_sources_stats_fops);
|
&wakeup_sources_stats_fops);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue