diff options
author | Ravi Eluri <venkataravi.e@techveda.org> | 2017-12-22 13:55:44 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-08 16:34:25 +0100 |
commit | 37d641ef37782acbdb861d3d18a46c39104da3ff (patch) | |
tree | 7eb959b101af1f96d707d1b0d45c935d0cc544d4 /drivers/staging/most | |
parent | 7b4c570ee56fa14ac4aef1eb633a69b5275aebea (diff) |
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>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r-- | drivers/staging/most/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |