diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-19 23:15:37 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-29 19:43:36 -0400 |
commit | 2fc74ac22751922f075f7e1ffda10daf88fe20fb (patch) | |
tree | ad40832fb658e749cae03cd19fa13434faf6f160 /drivers | |
parent | a1924d8a1da261293f81483fdad1e1af4ec47637 (diff) |
UWB: clean up attribute use by using ATTRIBUTE_GROUPS()
The ATTRIBUTE_GROUPS() macro can be used in the uwb code to reduce the
number of lines of code.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/uwb/lc-dev.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/drivers/uwb/lc-dev.c b/drivers/uwb/lc-dev.c index 9209eafc75b1..80079b8fed15 100644 --- a/drivers/uwb/lc-dev.c +++ b/drivers/uwb/lc-dev.c | |||
@@ -244,7 +244,7 @@ static ssize_t uwb_dev_RSSI_store(struct device *dev, | |||
244 | static DEVICE_ATTR(RSSI, S_IRUGO | S_IWUSR, uwb_dev_RSSI_show, uwb_dev_RSSI_store); | 244 | static DEVICE_ATTR(RSSI, S_IRUGO | S_IWUSR, uwb_dev_RSSI_show, uwb_dev_RSSI_store); |
245 | 245 | ||
246 | 246 | ||
247 | static struct attribute *dev_attrs[] = { | 247 | static struct attribute *uwb_dev_attrs[] = { |
248 | &dev_attr_EUI_48.attr, | 248 | &dev_attr_EUI_48.attr, |
249 | &dev_attr_DevAddr.attr, | 249 | &dev_attr_DevAddr.attr, |
250 | &dev_attr_BPST.attr, | 250 | &dev_attr_BPST.attr, |
@@ -253,20 +253,10 @@ static struct attribute *dev_attrs[] = { | |||
253 | &dev_attr_RSSI.attr, | 253 | &dev_attr_RSSI.attr, |
254 | NULL, | 254 | NULL, |
255 | }; | 255 | }; |
256 | 256 | ATTRIBUTE_GROUPS(uwb_dev); | |
257 | static struct attribute_group dev_attr_group = { | ||
258 | .attrs = dev_attrs, | ||
259 | }; | ||
260 | |||
261 | static const struct attribute_group *groups[] = { | ||
262 | &dev_attr_group, | ||
263 | NULL, | ||
264 | }; | ||
265 | 257 | ||
266 | /** | 258 | /** |
267 | * Device SYSFS registration | 259 | * Device SYSFS registration |
268 | * | ||
269 | * | ||
270 | */ | 260 | */ |
271 | static int __uwb_dev_sys_add(struct uwb_dev *uwb_dev, struct device *parent_dev) | 261 | static int __uwb_dev_sys_add(struct uwb_dev *uwb_dev, struct device *parent_dev) |
272 | { | 262 | { |
@@ -276,7 +266,7 @@ static int __uwb_dev_sys_add(struct uwb_dev *uwb_dev, struct device *parent_dev) | |||
276 | /* Device sysfs files are only useful for neighbor devices not | 266 | /* Device sysfs files are only useful for neighbor devices not |
277 | local radio controllers. */ | 267 | local radio controllers. */ |
278 | if (&uwb_dev->rc->uwb_dev != uwb_dev) | 268 | if (&uwb_dev->rc->uwb_dev != uwb_dev) |
279 | dev->groups = groups; | 269 | dev->groups = uwb_dev_groups; |
280 | dev->parent = parent_dev; | 270 | dev->parent = parent_dev; |
281 | dev_set_drvdata(dev, uwb_dev); | 271 | dev_set_drvdata(dev, uwb_dev); |
282 | 272 | ||