mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
USB: musb: fix up one odd DEVICE_ATTR() usage
It really should be DEVICE_ATTR_WO(), no need to "open code" it. Acked-by: Bin Liu <b-liu@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6453f53b75
commit
6e4294d0af
1 changed files with 2 additions and 3 deletions
|
@ -1778,8 +1778,7 @@ static DEVICE_ATTR_RW(vbus);
|
||||||
/* Gadget drivers can't know that a host is connected so they might want
|
/* Gadget drivers can't know that a host is connected so they might want
|
||||||
* to start SRP, but users can. This allows userspace to trigger SRP.
|
* to start SRP, but users can. This allows userspace to trigger SRP.
|
||||||
*/
|
*/
|
||||||
static ssize_t
|
static ssize_t srp_store(struct device *dev, struct device_attribute *attr,
|
||||||
musb_srp_store(struct device *dev, struct device_attribute *attr,
|
|
||||||
const char *buf, size_t n)
|
const char *buf, size_t n)
|
||||||
{
|
{
|
||||||
struct musb *musb = dev_to_musb(dev);
|
struct musb *musb = dev_to_musb(dev);
|
||||||
|
@ -1796,7 +1795,7 @@ musb_srp_store(struct device *dev, struct device_attribute *attr,
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
|
static DEVICE_ATTR_WO(srp);
|
||||||
|
|
||||||
static struct attribute *musb_attributes[] = {
|
static struct attribute *musb_attributes[] = {
|
||||||
&dev_attr_mode.attr,
|
&dev_attr_mode.attr,
|
||||||
|
|
Loading…
Add table
Reference in a new issue