From: Greg Kroah-Hartman Date: Mon, 15 Nov 2010 19:34:26 +0000 (-0800) Subject: USB: misc: trancevibrator: fix up a sysfs attribute permission X-Git-Tag: v2.6.35.10~64 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b3f4c19eafb1a74f2e2bdf6002745bb53014ce53;p=karo-tx-linux.git USB: misc: trancevibrator: fix up a sysfs attribute permission commit d489a4b3926bad571d404ca6508f6744b9602776 upstream. It should not be writable by any user. Reported-by: Linus Torvalds Cc: Sam Hocevar Signed-off-by: Greg Kroah-Hartman Signed-off-by: Andi Kleen --- diff --git a/drivers/usb/misc/trancevibrator.c b/drivers/usb/misc/trancevibrator.c index d77aba46ae85..f63776a48e2a 100644 --- a/drivers/usb/misc/trancevibrator.c +++ b/drivers/usb/misc/trancevibrator.c @@ -86,7 +86,7 @@ static ssize_t set_speed(struct device *dev, struct device_attribute *attr, return count; } -static DEVICE_ATTR(speed, S_IWUGO | S_IRUGO, show_speed, set_speed); +static DEVICE_ATTR(speed, S_IRUGO | S_IWUSR, show_speed, set_speed); static int tv_probe(struct usb_interface *interface, const struct usb_device_id *id)