From f487c802cba56b5f38c5cb5d2eb32b9562f50dde Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 1 May 2015 21:05:50 +0200 Subject: [PATCH] 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 --- drivers/staging/greybus/protocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/greybus/protocol.h b/drivers/staging/greybus/protocol.h index 82d9e81386e3..d16a582d571a 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 -- 2.11.0