From patchwork Thu Aug 8 04:25:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2840734 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 253CCBF535 for ; Thu, 8 Aug 2013 04:49:13 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 605E520125 for ; Thu, 8 Aug 2013 04:49:12 +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 7336020109 for ; Thu, 8 Aug 2013 04:49:11 +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 1V7I9i-0001jx-Vl; Thu, 08 Aug 2013 04:48:59 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1V7I9b-0005q6-O6; Thu, 08 Aug 2013 04:48:51 +0000 Received: from mail-pd0-f180.google.com ([209.85.192.180]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V7I9a-0005p0-4w for linux-arm-kernel@lists.infradead.org; Thu, 08 Aug 2013 04:48:50 +0000 Received: by mail-pd0-f180.google.com with SMTP id 15so2128930pdi.39 for ; Wed, 07 Aug 2013 21:48:28 -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:in-reply-to :references; bh=FghuXQJ+nsyHDKT3WvDNnPLyHE/4InZMeSifUtpFxvs=; b=aosn4yFjoaY4jwxYNhvRiuwVWN21db9MhYw6Z4Z+OdK2quJq/s6IwVoBNZ1SqRnxXI Rv7n/whf1exyHNW7ypDs0uVFyExUw5FFTiZWG/sz7iNrHph5TsRiSj5RYQHVyjEr0A0J 8Fy67GnE2Ephlvv7RfS40Ujdh2ywA47orX5/b2+D4F4Ush5Res0RaUqa2ZSl1MwbVL9S FIMDKG0axIhs5w7KGrk4GLIKJGs0hpnhIMngLs2/4Iur4adA/N1megsHIgiFFiJAePND 4jZBmEO0ksblSjX3rMXESF8CDJ1RQrtZRPuQAKWgLf6abxRnr9wtRQtXwjCF9l5/8TM+ ccKg== X-Gm-Message-State: ALoCoQk5qNm5+Uvp3cJSXzOh48HCHD9OTCNraw7lySas+H/2Wj0hD+6T+CwHFJepKfiZM7jEF0zB X-Received: by 10.66.170.208 with SMTP id ao16mr4169195pac.24.1375936958587; Wed, 07 Aug 2013 21:42:38 -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.36 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 07 Aug 2013 21:42:38 -0700 (PDT) From: Sachin Kamat To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 2/3] clk: tegra20: Fix incorrect placement of __initdata Date: Thu, 8 Aug 2013 09:55:48 +0530 Message-Id: <1375935949-19557-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1375935949-19557-1-git-send-email-sachin.kamat@linaro.org> References: <1375935949-19557-1-git-send-email-sachin.kamat@linaro.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130808_004850_278129_48B08EBD X-CRM114-Status: GOOD ( 10.45 ) 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 --- drivers/clk/tegra/clk-tegra20.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/tegra/clk-tegra20.c b/drivers/clk/tegra/clk-tegra20.c index 759ca47..ebe94ce 100644 --- a/drivers/clk/tegra/clk-tegra20.c +++ b/drivers/clk/tegra/clk-tegra20.c @@ -1223,7 +1223,7 @@ static struct tegra_cpu_car_ops tegra20_cpu_car_ops = { #endif }; -static __initdata struct tegra_clk_init_table init_table[] = { +static struct tegra_clk_init_table init_table[] __initdata = { {pll_p, clk_max, 216000000, 1}, {pll_p_out1, clk_max, 28800000, 1}, {pll_p_out2, clk_max, 48000000, 1},