Browse Source

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>
Ravi Eluri 7 years ago
parent
commit
37d641ef37
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/most/core.c

+ 1 - 1
drivers/staging/most/core.c

@@ -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;