2014-01-07 14:23:08

by Wei Yongjun

[permalink] [raw]
Subject: [PATCH -next] Bluetooth: Convert to use ATTRIBUTE_GROUPS macro

From: Wei Yongjun <[email protected]>

Use ATTRIBUTE_GROUPS macro to reduce the number of lines of code.

Signed-off-by: Wei Yongjun <[email protected]>
---
net/bluetooth/hci_sysfs.c | 18 ++----------------
1 file changed, 2 insertions(+), 16 deletions(-)

diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index 0b61250..555982a 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -49,14 +49,7 @@ static struct attribute *bt_link_attrs[] = {
NULL
};

-static struct attribute_group bt_link_group = {
- .attrs = bt_link_attrs,
-};
-
-static const struct attribute_group *bt_link_groups[] = {
- &bt_link_group,
- NULL
-};
+ATTRIBUTE_GROUPS(bt_link);

static void bt_link_release(struct device *dev)
{
@@ -182,14 +175,7 @@ static struct attribute *bt_host_attrs[] = {
NULL
};

-static struct attribute_group bt_host_group = {
- .attrs = bt_host_attrs,
-};
-
-static const struct attribute_group *bt_host_groups[] = {
- &bt_host_group,
- NULL
-};
+ATTRIBUTE_GROUPS(bt_host);

static void bt_host_release(struct device *dev)
{


2014-01-13 08:27:24

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH -next] Bluetooth: Convert to use ATTRIBUTE_GROUPS macro

Hi,

On Tue, Jan 07, 2014, Wei Yongjun wrote:
> From: Wei Yongjun <[email protected]>
>
> Use ATTRIBUTE_GROUPS macro to reduce the number of lines of code.
>
> Signed-off-by: Wei Yongjun <[email protected]>
> ---
> net/bluetooth/hci_sysfs.c | 18 ++----------------
> 1 file changed, 2 insertions(+), 16 deletions(-)

Applied to the bluetooth-next tree. Thanks.

Johan