aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/chipidea/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/chipidea/core.c')
-rw-r--r--drivers/usb/chipidea/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/chipidea/core.c b/drivers/usb/chipidea/core.c
index dd2dd9391bb7..33ae87fa3ff3 100644
--- a/drivers/usb/chipidea/core.c
+++ b/drivers/usb/chipidea/core.c
@@ -835,7 +835,7 @@ static void ci_get_otg_capable(struct ci_hdrc *ci)
835 } 835 }
836} 836}
837 837
838static ssize_t ci_role_show(struct device *dev, struct device_attribute *attr, 838static ssize_t role_show(struct device *dev, struct device_attribute *attr,
839 char *buf) 839 char *buf)
840{ 840{
841 struct ci_hdrc *ci = dev_get_drvdata(dev); 841 struct ci_hdrc *ci = dev_get_drvdata(dev);
@@ -846,7 +846,7 @@ static ssize_t ci_role_show(struct device *dev, struct device_attribute *attr,
846 return 0; 846 return 0;
847} 847}
848 848
849static ssize_t ci_role_store(struct device *dev, 849static ssize_t role_store(struct device *dev,
850 struct device_attribute *attr, const char *buf, size_t n) 850 struct device_attribute *attr, const char *buf, size_t n)
851{ 851{
852 struct ci_hdrc *ci = dev_get_drvdata(dev); 852 struct ci_hdrc *ci = dev_get_drvdata(dev);
@@ -877,7 +877,7 @@ static ssize_t ci_role_store(struct device *dev,
877 877
878 return (ret == 0) ? n : ret; 878 return (ret == 0) ? n : ret;
879} 879}
880static DEVICE_ATTR(role, 0644, ci_role_show, ci_role_store); 880static DEVICE_ATTR_RW(role);
881 881
882static struct attribute *ci_attrs[] = { 882static struct attribute *ci_attrs[] = {
883 &dev_attr_role.attr, 883 &dev_attr_role.attr,