From: Ivo van Doorn Date: Wed, 18 Jul 2007 22:38:03 +0000 (-0700) Subject: [RFKILL]: Make state sysfs writable X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c81de6addb913423acef6e692fd70688180ab5dd;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git [RFKILL]: Make state sysfs writable The rfkill state Sysfs attribute should be made writable, we already pass the argument for the store handler, so we only need to update the permissions flag. Signed-off-by: Ivo van Doorn Signed-off-by: David S. Miller --- diff --git a/net/rfkill/rfkill.c b/net/rfkill/rfkill.c index f3986d498b4..db3395bfbcf 100644 --- a/net/rfkill/rfkill.c +++ b/net/rfkill/rfkill.c @@ -187,7 +187,7 @@ static ssize_t rfkill_claim_store(struct device *dev, static struct device_attribute rfkill_dev_attrs[] = { __ATTR(name, S_IRUGO, rfkill_name_show, NULL), __ATTR(type, S_IRUGO, rfkill_type_show, NULL), - __ATTR(state, S_IRUGO, rfkill_state_show, rfkill_state_store), + __ATTR(state, S_IRUGO|S_IWUSR, rfkill_state_show, rfkill_state_store), __ATTR(claim, S_IRUGO|S_IWUSR, rfkill_claim_show, rfkill_claim_store), __ATTR_NULL };