staging: most: Avoid trailing semicolon for macros

Fixes checkpatch warning:
macros should not use a trailing semicolon.

Signed-off-by: Ravi Eluri <venkataravi.e@techveda.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Ravi Eluri 2017-12-22 13:55:44 +05:30 committed by Greg Kroah-Hartman
parent 7b4c570ee5
commit 37d641ef37

View File

@ -36,7 +36,7 @@ static struct mostcore {
struct list_head comp_list;
} mc;
#define to_driver(d) container_of(d, struct mostcore, drv);
#define to_driver(d) container_of(d, struct mostcore, drv)
struct pipe {
struct core_component *comp;