modify some file permissions for cts

This commit is contained in:
mmk
2012-03-23 15:06:52 +08:00
committed by zhanghao
parent 5d97a11bdb
commit ca7d682aab
2 changed files with 7 additions and 7 deletions

View File

@@ -186,7 +186,7 @@ ssize_t cmmb_class_show_name(struct class * class, char * buf, size_t count, lof
}
static CLASS_ATTR(name, 0777, cmmb_class_show_name, NULL);
static CLASS_ATTR(name, 0660, cmmb_class_show_name, NULL);
static int __init init_cmmbclass(void)
{

View File

@@ -672,17 +672,17 @@ static ssize_t bma150_enable_store(struct device *dev,
return count;
}
static DEVICE_ATTR(range, S_IRUGO|S_IWUSR|S_IWGRP|S_IWOTH,
static DEVICE_ATTR(range, S_IRUGO,
bma150_range_show, bma150_range_store);
static DEVICE_ATTR(bandwidth, S_IRUGO|S_IWUSR|S_IWGRP|S_IWOTH,
static DEVICE_ATTR(bandwidth, S_IRUGO,
bma150_bandwidth_show, bma150_bandwidth_store);
static DEVICE_ATTR(mode, S_IRUGO|S_IWUSR|S_IWGRP|S_IWOTH,
static DEVICE_ATTR(mode, S_IRUGO,
bma150_mode_show, bma150_mode_store);
static DEVICE_ATTR(value, S_IRUGO|S_IWUSR|S_IWGRP,
static DEVICE_ATTR(value, S_IRUGO,
bma150_value_show, NULL);
static DEVICE_ATTR(delay, S_IRUGO|S_IWUSR|S_IWGRP|S_IWOTH,
static DEVICE_ATTR(delay, S_IRUGO,
bma150_delay_show, bma150_delay_store);
static DEVICE_ATTR(enable, S_IRUGO|S_IWUSR|S_IWGRP|S_IWOTH,
static DEVICE_ATTR(enable, S_IRUGO,
bma150_enable_show, bma150_enable_store);
static struct attribute *bma150_attributes[] = {