Skip to content

Commit

Permalink
ieee802154: wpan-class: fix trailing semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Alexander Aring authored and Marcel Holtmann committed Oct 25, 2014
1 parent e72740d commit ed1da14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ieee802154/wpan-class.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static ssize_t name ## _show(struct device *dev, \
mutex_unlock(&phy->pib_lock); \
return ret; \
} \
static DEVICE_ATTR_RO(name);
static DEVICE_ATTR_RO(name)

#define MASTER_SHOW(field, format_string) \
MASTER_SHOW_COMPLEX(field, format_string, phy->field)
Expand Down

0 comments on commit ed1da14

Please sign in to comment.