From patchwork Wed Aug 24 09:23:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 3645 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 07B9223F4D for ; Wed, 24 Aug 2011 09:23:59 +0000 (UTC) Received: from mail-bw0-f52.google.com (mail-bw0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id E4DF0A1891A for ; Wed, 24 Aug 2011 09:23:58 +0000 (UTC) Received: by mail-bw0-f52.google.com with SMTP id zs2so1150659bkb.11 for ; Wed, 24 Aug 2011 02:23:58 -0700 (PDT) Received: by 10.204.131.198 with SMTP id y6mr2116877bks.330.1314177838683; Wed, 24 Aug 2011 02:23:58 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.204.41.75 with SMTP id n11cs7293bke; Wed, 24 Aug 2011 02:23:58 -0700 (PDT) Received: by 10.213.16.197 with SMTP id p5mr1717041eba.118.1314177838110; Wed, 24 Aug 2011 02:23:58 -0700 (PDT) Received: from eu1sys200aog111.obsmtp.com (eu1sys200aog111.obsmtp.com [207.126.144.131]) by mx.google.com with SMTP id z43si687348eef.45.2011.08.24.02.23.53 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 24 Aug 2011 02:23:58 -0700 (PDT) Received-SPF: neutral (google.com: 207.126.144.131 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) client-ip=207.126.144.131; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.131 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) smtp.mail=linus.walleij@stericsson.com Received: from beta.dmz-us.st.com ([167.4.1.35]) (using TLSv1) by eu1sys200aob111.postini.com ([207.126.147.11]) with SMTP ID DSNKTlTDKWKDX/suWgD5NmlHY4DyTJVutT5j@postini.com; Wed, 24 Aug 2011 09:23:57 UTC Received: from zeta.dmz-us.st.com (ns4.st.com [167.4.16.71]) by beta.dmz-us.st.com (STMicroelectronics) with ESMTP id 15DE26F; Wed, 24 Aug 2011 09:23:52 +0000 (GMT) Received: from relay2.stm.gmessaging.net (unknown [10.230.100.18]) by zeta.dmz-us.st.com (STMicroelectronics) with ESMTP id B03304E; Wed, 24 Aug 2011 09:23:51 +0000 (GMT) Received: from exdcvycastm022.EQ1STM.local (alteon-source-exch [10.230.100.61]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "exdcvycastm022", Issuer "exdcvycastm022" (not verified)) by relay2.stm.gmessaging.net (Postfix) with ESMTPS id 4E966A807D; Wed, 24 Aug 2011 11:23:47 +0200 (CEST) Received: from localhost.localdomain (10.230.100.153) by smtp.stericsson.com (10.230.100.30) with Microsoft SMTP Server (TLS) id 8.3.83.0; Wed, 24 Aug 2011 11:23:50 +0200 From: Linus Walleij To: Cc: Lee Jones , Linus Walleij , Srinidhi Kasagar , Rabin Vincent Subject: [PATCH 2/3] mach-ux500: initialize l2x0 at arch_init time Date: Wed, 24 Aug 2011 11:23:46 +0200 Message-ID: <1314177826-19151-1-git-send-email-linus.walleij@stericsson.com> X-Mailer: git-send-email 1.7.3.2 MIME-Version: 1.0 From: Linus Walleij mach-imx initialize their l2x0 cach at arch_init time, so why shouldn't we. Cc: Srinidhi Kasagar Cc: Rabin Vincent Signed-off-by: Linus Walleij --- arch/arm/mach-ux500/cache-l2x0.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-ux500/cache-l2x0.c b/arch/arm/mach-ux500/cache-l2x0.c index 9d09e4d..aa2d77f 100644 --- a/arch/arm/mach-ux500/cache-l2x0.c +++ b/arch/arm/mach-ux500/cache-l2x0.c @@ -69,4 +69,4 @@ static int ux500_l2x0_init(void) return 0; } -early_initcall(ux500_l2x0_init); +arch_initcall(ux500_l2x0_init);