From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752330Ab1CJN0m (ORCPT ); Thu, 10 Mar 2011 08:26:42 -0500 Received: from na3sys009aog110.obsmtp.com ([74.125.149.203]:54227 "EHLO na3sys009aog110.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751601Ab1CJN0l (ORCPT ); Thu, 10 Mar 2011 08:26:41 -0500 From: Felipe Balbi To: Jiri Kosina Cc: Linux Kernel Mailing List , Felipe Balbi Subject: [PATCH 2/2] init: drop trailing semicolon from module_init/module_exit Date: Thu, 10 Mar 2011 15:26:33 +0200 Message-Id: <1299763593-3356-2-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.4.rc2 In-Reply-To: <1299763593-3356-1-git-send-email-balbi@ti.com> References: <1299763593-3356-1-git-send-email-balbi@ti.com> Organization: Texas Instruments\n Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org now that all drivers add ; to the end of module_init() and module_exit(), we can safely remove it from the definition. Signed-off-by: Felipe Balbi --- include/linux/init.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/init.h b/include/linux/init.h index 577671c5..8532f7c 100644 --- a/include/linux/init.h +++ b/include/linux/init.h @@ -263,7 +263,7 @@ void __init parse_early_options(char *cmdline); * builtin) or at module insertion time (if a module). There can only * be one per module. */ -#define module_init(x) __initcall(x); +#define module_init(x) __initcall(x) /** * module_exit() - driver exit entry point @@ -275,7 +275,7 @@ void __init parse_early_options(char *cmdline); * compiled into the kernel, module_exit() has no effect. * There can only be one per module. */ -#define module_exit(x) __exitcall(x); +#define module_exit(x) __exitcall(x) #else /* MODULE */ -- 1.7.4.rc2