Commit add04a98 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: most: core.c: remove semicolon at the end of define statement

Remove semicolon at the end of define statement to fix checkpatch warning.
WARNING: macros should not use a trailing semicolon
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Acked-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6e64e224
...@@ -328,7 +328,7 @@ static ssize_t show_channel_starving(struct most_c_obj *c, ...@@ -328,7 +328,7 @@ static ssize_t show_channel_starving(struct most_c_obj *c,
#define create_show_channel_attribute(val) \ #define create_show_channel_attribute(val) \
static MOST_CHNL_ATTR(val, S_IRUGO, show_##val, NULL); static MOST_CHNL_ATTR(val, S_IRUGO, show_##val, NULL)
create_show_channel_attribute(available_directions); create_show_channel_attribute(available_directions);
create_show_channel_attribute(available_datatypes); create_show_channel_attribute(available_datatypes);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment