From patchwork Thu Aug 8 04:25:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2840731 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id B8E7BBF535 for ; Thu, 8 Aug 2013 04:43:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E78512034D for ; Thu, 8 Aug 2013 04:43:10 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id DDA382033F for ; Thu, 8 Aug 2013 04:43:09 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V7I3z-0000dp-F4; Thu, 08 Aug 2013 04:43:03 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1V7I3x-0005kW-7r; Thu, 08 Aug 2013 04:43:01 +0000 Received: from mail-pd0-f175.google.com ([209.85.192.175]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V7I3u-0005kC-9J for linux-arm-kernel@lists.infradead.org; Thu, 08 Aug 2013 04:42:58 +0000 Received: by mail-pd0-f175.google.com with SMTP id 5so2150862pdd.6 for ; Wed, 07 Aug 2013 21:42:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=YhIOJPyOwmdEjP7pOEha/7awY3hYXE+qGWBjQzohKRI=; b=Y/cAYHV48yTVELnAr3hH10eX9CpQuVZy/eIGCTg34f+je0mXQdUPawbrjV5L4temYV daPvM0m0lOA/tNzE7yR/4CMqvp/E3qmnzBC2e6dm1quL5/7g8eWM+baprmd42kjPBBPR OntQ5o/2s2OBckP1ZoiXRUOOyHlqjUSUoCDIcOKNkx7hxSLLq0Ghzz9tkvNmWe6oNJcu LfHoB9viKVfGMt/Y8wrUR6eicdszu+g6znGhLWMUFADDIt3e370iCd53ESm9Q4HpXv/i OvPF+qafG3dadBDfwLoeCGVKQ3cEM+c4Jh+IzC9nkVVe1xnVdEMoRK9JPGHLQVngiGiZ EoQA== X-Gm-Message-State: ALoCoQla1NuJ7TPhHI0ohFuwZbocKUeV3UXUqEtadTdeufZkLNXTSz/P+XGql8rHAMiRHzwPBGFe X-Received: by 10.68.201.6 with SMTP id jw6mr3903992pbc.202.1375936955940; Wed, 07 Aug 2013 21:42:35 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id sz3sm11720063pbc.5.2013.08.07.21.42.33 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 07 Aug 2013 21:42:35 -0700 (PDT) From: Sachin Kamat To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata Date: Thu, 8 Aug 2013 09:55:47 +0530 Message-Id: <1375935949-19557-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130808_004258_411908_3E1C6B9C X-CRM114-Status: UNSURE ( 9.62 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) Cc: linux-tegra@vger.kernel.org, sachin.kamat@linaro.org, mturquette@linaro.org, swarren@wwwdotorg.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP __initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Signed-off-by: Sachin Kamat Acked-by: Stephen Warren Tested-by: Stephen Warren --- drivers/clk/tegra/clk-tegra114.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c index f74ed19..66fa1d6 100644 --- a/drivers/clk/tegra/clk-tegra114.c +++ b/drivers/clk/tegra/clk-tegra114.c @@ -2182,7 +2182,7 @@ static const struct of_device_id pmc_match[] __initconst = { * dfll_soc/dfll_ref apparently must be kept enabled, otherwise I2C5 * breaks */ -static __initdata struct tegra_clk_init_table init_table[] = { +static struct tegra_clk_init_table init_table[] __initdata = { {uarta, pll_p, 408000000, 0}, {uartb, pll_p, 408000000, 0}, {uartc, pll_p, 408000000, 0},