From patchwork Mon Aug 12 09:13:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2842905 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 908BD9F239 for ; Mon, 12 Aug 2013 09:31:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9F7792021A for ; Mon, 12 Aug 2013 09:31:41 +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 E236F2020F for ; Mon, 12 Aug 2013 09:31:36 +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 1V8oTN-00042s-EM; Mon, 12 Aug 2013 09:31:33 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1V8oTL-0003Qe-2O; Mon, 12 Aug 2013 09:31:31 +0000 Received: from mail-pa0-f49.google.com ([209.85.220.49]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V8oTI-0003Q7-G7 for linux-arm-kernel@lists.infradead.org; Mon, 12 Aug 2013 09:31:28 +0000 Received: by mail-pa0-f49.google.com with SMTP id ld10so2735107pab.22 for ; Mon, 12 Aug 2013 02:31:06 -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=awRMJ75YGWCrANGMAn/NyMQbzlhHQ2FvG0Nfzyo2FyM=; b=SU1nAOvq5Qk3J8Sd3PMMn5obwDT54p984JzbauJTFMjcmInivzX3LLZ3qBtCnuXs9I 6TeVLQtr34SrX3MAbo1ztnppp6b8ID3ouB+Nq3qfEq7qBLreKqTmbS0OoQD3oC4+OZpr 9U/fEs1kNb+2m7UErgFAJObrfaOSn2m0LIWwHXTWsCeR4i9ClHSUaAaovBp7vuuMP4ID qL79WGJrGVOrb1sbSd3jWdpG5zErYrvN8Nppt4sFnx4l3yyrcuQnkNWCuCbGvblP7w+b cp0xWZNGKpFCS1JD1QKGCSE/VoAHqCtPHfAOHhMnTKEkYCGFI1cV1ceYUFbaoaD80165 QBqA== X-Gm-Message-State: ALoCoQnZrgv7FN973GAU69gxMkh4XNq2skvSOPpUUcFRCS+hfon21t/lTIrtWLgXTooQf9uR3XqE X-Received: by 10.66.161.229 with SMTP id xv5mr12829810pab.87.1376299866105; Mon, 12 Aug 2013 02:31:06 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id ll5sm38777586pab.19.2013.08.12.02.31.02 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 12 Aug 2013 02:31:05 -0700 (PDT) From: Sachin Kamat To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 1/9] clk: bcm2835: Fix incorrect placement of __initconst Date: Mon, 12 Aug 2013 14:43:59 +0530 Message-Id: <1376298847-21828-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-20130812_053128_603885_403F55D4 X-CRM114-Status: GOOD ( 10.38 ) X-Spam-Score: -2.6 (--) Cc: sachin.kamat@linaro.org, mturquette@linaro.org, Stephen Warren 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=-7.0 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 __initconst 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 Cc: Stephen Warren Acked-by: Stephen Warren --- drivers/clk/clk-bcm2835.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/clk-bcm2835.c b/drivers/clk/clk-bcm2835.c index 792bc57..5fb4ff5 100644 --- a/drivers/clk/clk-bcm2835.c +++ b/drivers/clk/clk-bcm2835.c @@ -23,7 +23,7 @@ #include #include -static const __initconst struct of_device_id clk_match[] = { +static const struct of_device_id clk_match[] __initconst = { { .compatible = "fixed-clock", .data = of_fixed_clk_setup, }, { } };