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:
parent
7b4c570ee5
commit
37d641ef37
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue