mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-07 07:05:20 +00:00
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>
This commit is contained in:
parent
e72740d057
commit
ed1da14817
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ static ssize_t name ## _show(struct device *dev, \
|
||||||
mutex_unlock(&phy->pib_lock); \
|
mutex_unlock(&phy->pib_lock); \
|
||||||
return ret; \
|
return ret; \
|
||||||
} \
|
} \
|
||||||
static DEVICE_ATTR_RO(name);
|
static DEVICE_ATTR_RO(name)
|
||||||
|
|
||||||
#define MASTER_SHOW(field, format_string) \
|
#define MASTER_SHOW(field, format_string) \
|
||||||
MASTER_SHOW_COMPLEX(field, format_string, phy->field)
|
MASTER_SHOW_COMPLEX(field, format_string, phy->field)
|
||||||
|
|
Loading…
Add table
Reference in a new issue