Commit 3b7cf04f authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: quickstart: fix up sysfs file permissions

Use the default DEVICE_ATTR_RO/RW macros to specify the file permissions
better, and make them easier to audit.

And did we really want any user to be able to write to this file, I kind
of doubt it...

Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Toshi Kani <toshi.kani@hp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 00009615
...@@ -71,8 +71,7 @@ static struct quickstart_button *pressed; ...@@ -71,8 +71,7 @@ static struct quickstart_button *pressed;
static struct input_dev *quickstart_input; static struct input_dev *quickstart_input;
/* Platform driver functions */ /* Platform driver functions */
static ssize_t quickstart_buttons_show(struct device *dev, static ssize_t buttons_show(struct device *dev, struct device_attribute *attr,
struct device_attribute *attr,
char *buf) char *buf)
{ {
int count = 0; int count = 0;
...@@ -94,16 +93,15 @@ static ssize_t quickstart_buttons_show(struct device *dev, ...@@ -94,16 +93,15 @@ static ssize_t quickstart_buttons_show(struct device *dev,
return count; return count;
} }
static ssize_t quickstart_pressed_button_show(struct device *dev, static ssize_t pressed_button_show(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr, char *buf)
char *buf)
{ {
return scnprintf(buf, PAGE_SIZE, "%s\n", return scnprintf(buf, PAGE_SIZE, "%s\n",
(pressed ? pressed->name : "none")); (pressed ? pressed->name : "none"));
} }
static ssize_t quickstart_pressed_button_store(struct device *dev, static ssize_t pressed_button_store(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr,
const char *buf, size_t count) const char *buf, size_t count)
{ {
...@@ -319,9 +317,8 @@ static int quickstart_acpi_remove(struct acpi_device *device) ...@@ -319,9 +317,8 @@ static int quickstart_acpi_remove(struct acpi_device *device)
} }
/* Platform driver structs */ /* Platform driver structs */
static DEVICE_ATTR(pressed_button, 0666, quickstart_pressed_button_show, static DEVICE_ATTR_RW(pressed_button);
quickstart_pressed_button_store); static DEVICE_ATTR_RO(buttons);
static DEVICE_ATTR(buttons, 0444, quickstart_buttons_show, NULL);
static struct platform_device *pf_device; static struct platform_device *pf_device;
static struct platform_driver pf_driver = { static struct platform_driver pf_driver = {
.driver = { .driver = {
......
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