Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932309AbWLZFNW (ORCPT ); Tue, 26 Dec 2006 00:13:22 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932298AbWLZFNW (ORCPT ); Tue, 26 Dec 2006 00:13:22 -0500 Received: from TYO201.gate.nec.co.jp ([202.32.8.193]:40418 "EHLO tyo201.gate.nec.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932235AbWLZFNV (ORCPT ); Tue, 26 Dec 2006 00:13:21 -0500 Message-ID: <4590AF69.2030300@bx.jp.nec.com> Date: Tue, 26 Dec 2006 14:13:13 +0900 From: Keiichi KII User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: mpm@selenic.com CC: linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: [RFC][PATCH -mm take2 1/5] marking __init References: <4590AE00.5040102@bx.jp.nec.com> In-Reply-To: <4590AE00.5040102@bx.jp.nec.com> Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1195 Lines: 38 From: Keiichi KII This patch contains the following cleanups. - add __init for initialization functions(option_setup() and init_netconsole()). Signed-off-by: Keiichi KII Signed-off-by: Takayoshi Kochi --- --- linux-mm/drivers/net/netconsole.c 2006-12-26 14:10:17.177090000 +0900 +++ enhanced-netconsole/drivers/net/netconsole.c.cleanup 2006-12-25 16:44:31.615793750 +0900 @@ -91,7 +91,7 @@ static struct console netconsole = { .write = write_msg }; -static int option_setup(char *opt) +static int __init option_setup(char *opt) { configured = !netpoll_parse_options(&np, opt); return 1; @@ -99,7 +99,7 @@ static int option_setup(char *opt) __setup("netconsole=", option_setup); -static int init_netconsole(void) +static int __init init_netconsole(void) { int err; -- Keiichi KII NEC Corporation OSS Promotion Center E-mail: k-keiichi@bx.jp.nec.com - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/