diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-10-24 23:25:12 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-25 02:07:30 -0400 |
commit | ed1da148178d90bc21d96f35cfa62f969362495f (patch) | |
tree | 8bd8eed4c88ae22b4c6ef2499f69630d74df2cbd /net/ieee802154 | |
parent | e72740d057fea18be17587ff84ecebf09b30ca7d (diff) |
ieee802154: wpan-class: fix trailing semicolon
This patch removes an unnecessary tailing semicolon after macro
define. Otherwise we get a trailing semicolon while using this macro.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/wpan-class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/wpan-class.c b/net/ieee802154/wpan-class.c index 9a2dfab5648d..e4c6fb31a360 100644 --- a/net/ieee802154/wpan-class.c +++ b/net/ieee802154/wpan-class.c | |||
@@ -33,7 +33,7 @@ static ssize_t name ## _show(struct device *dev, \ | |||
33 | mutex_unlock(&phy->pib_lock); \ | 33 | mutex_unlock(&phy->pib_lock); \ |
34 | return ret; \ | 34 | return ret; \ |
35 | } \ | 35 | } \ |
36 | static DEVICE_ATTR_RO(name); | 36 | static DEVICE_ATTR_RO(name) |
37 | 37 | ||
38 | #define MASTER_SHOW(field, format_string) \ | 38 | #define MASTER_SHOW(field, format_string) \ |
39 | MASTER_SHOW_COMPLEX(field, format_string, phy->field) | 39 | MASTER_SHOW_COMPLEX(field, format_string, phy->field) |