From: Greg Kroah-Hartman Date: Fri, 1 May 2015 19:05:50 +0000 (+0200) Subject: greybus: protocol.h: macros should not have a trailing ';' X-Git-Tag: v5.15~12752^2~378^2~21^2~1565 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f487c802cba56b5f38c5cb5d2eb32b9562f50dde;p=platform%2Fkernel%2Flinux-starfive.git greybus: protocol.h: macros should not have a trailing ';' Remove the trailing ';' character from the gb_protocol_driver() macro as it's not needed and is bad coding style. Signed-off-by: Greg Kroah-Hartman Reviewed-by: Viresh Kumar --- diff --git a/drivers/staging/greybus/protocol.h b/drivers/staging/greybus/protocol.h index 82d9e81..d16a582 100644 --- a/drivers/staging/greybus/protocol.h +++ b/drivers/staging/greybus/protocol.h @@ -97,7 +97,7 @@ static void __exit protocol_exit(void) \ { \ gb_protocol_deregister(__protocol); \ } \ -module_exit(protocol_exit); +module_exit(protocol_exit) /* * Macro to create get_version() routine for protocols