From 37d641ef37782acbdb861d3d18a46c39104da3ff Mon Sep 17 00:00:00 2001 From: Ravi Eluri Date: Fri, 22 Dec 2017 13:55:44 +0530 Subject: staging: most: Avoid trailing semicolon for macros Fixes checkpatch warning: macros should not use a trailing semicolon. Signed-off-by: Ravi Eluri Signed-off-by: Greg Kroah-Hartman --- drivers/staging/most/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/most/core.c b/drivers/staging/most/core.c index 5ba2cd5ec1b0..3dda8d81bf0b 100644 --- a/drivers/staging/most/core.c +++ b/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; -- cgit v1.2.3