aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/uwb/umc-bus.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/uwb/umc-bus.c b/drivers/uwb/umc-bus.c
index 5c5b3fc9088a..e3ed6ff6a481 100644
--- a/drivers/uwb/umc-bus.c
+++ b/drivers/uwb/umc-bus.c
@@ -201,6 +201,7 @@ static ssize_t capability_id_show(struct device *dev, struct device_attribute *a
201 201
202 return sprintf(buf, "0x%02x\n", umc->cap_id); 202 return sprintf(buf, "0x%02x\n", umc->cap_id);
203} 203}
204static DEVICE_ATTR_RO(capability_id);
204 205
205static ssize_t version_show(struct device *dev, struct device_attribute *attr, char *buf) 206static ssize_t version_show(struct device *dev, struct device_attribute *attr, char *buf)
206{ 207{
@@ -208,12 +209,14 @@ static ssize_t version_show(struct device *dev, struct device_attribute *attr, c
208 209
209 return sprintf(buf, "0x%04x\n", umc->version); 210 return sprintf(buf, "0x%04x\n", umc->version);
210} 211}
212static DEVICE_ATTR_RO(version);
211 213
212static struct device_attribute umc_dev_attrs[] = { 214static struct attribute *umc_dev_attrs[] = {
213 __ATTR_RO(capability_id), 215 &dev_attr_capability_id.attr,
214 __ATTR_RO(version), 216 &dev_attr_version.attr,
215 __ATTR_NULL, 217 NULL,
216}; 218};
219ATTRIBUTE_GROUPS(umc_dev);
217 220
218struct bus_type umc_bus_type = { 221struct bus_type umc_bus_type = {
219 .name = "umc", 222 .name = "umc",
@@ -222,7 +225,7 @@ struct bus_type umc_bus_type = {
222 .remove = umc_device_remove, 225 .remove = umc_device_remove,
223 .suspend = umc_device_suspend, 226 .suspend = umc_device_suspend,
224 .resume = umc_device_resume, 227 .resume = umc_device_resume,
225 .dev_attrs = umc_dev_attrs, 228 .dev_groups = umc_dev_groups,
226}; 229};
227EXPORT_SYMBOL_GPL(umc_bus_type); 230EXPORT_SYMBOL_GPL(umc_bus_type);
228 231