mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 14:48:06 +00:00
USB: misc: cypress_cy7c63: fix up some sysfs attribute permissions
They should not be writable by any user. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: Oliver Bock <bock@tfh-berlin.de> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
d9624e75f6
commit
c990600d34
1 changed files with 2 additions and 4 deletions
|
@ -196,11 +196,9 @@ static ssize_t get_port1_handler(struct device *dev,
|
||||||
return read_port(dev, attr, buf, 1, CYPRESS_READ_PORT_ID1);
|
return read_port(dev, attr, buf, 1, CYPRESS_READ_PORT_ID1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static DEVICE_ATTR(port0, S_IWUGO | S_IRUGO,
|
static DEVICE_ATTR(port0, S_IRUGO | S_IWUSR, get_port0_handler, set_port0_handler);
|
||||||
get_port0_handler, set_port0_handler);
|
|
||||||
|
|
||||||
static DEVICE_ATTR(port1, S_IWUGO | S_IRUGO,
|
static DEVICE_ATTR(port1, S_IRUGO | S_IWUSR, get_port1_handler, set_port1_handler);
|
||||||
get_port1_handler, set_port1_handler);
|
|
||||||
|
|
||||||
|
|
||||||
static int cypress_probe(struct usb_interface *interface,
|
static int cypress_probe(struct usb_interface *interface,
|
||||||
|
|
Loading…
Add table
Reference in a new issue