From patchwork Thu Jul 21 13:38:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sangwook X-Patchwork-Id: 3020 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 3D91723DE6 for ; Thu, 21 Jul 2011 13:40:30 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 0774FA185FC for ; Thu, 21 Jul 2011 13:40:29 +0000 (UTC) Received: by qyk30 with SMTP id 30so884447qyk.11 for ; Thu, 21 Jul 2011 06:40:29 -0700 (PDT) Received: by 10.224.198.7 with SMTP id em7mr244176qab.112.1311255629458; Thu, 21 Jul 2011 06:40:29 -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.229.217.78 with SMTP id hl14cs140827qcb; Thu, 21 Jul 2011 06:40:28 -0700 (PDT) Received: by 10.14.95.1 with SMTP id o1mr131328eef.129.1311255628209; Thu, 21 Jul 2011 06:40:28 -0700 (PDT) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx.google.com with ESMTPS id fq12si2494755wbb.76.2011.07.21.06.40.27 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 21 Jul 2011 06:40:28 -0700 (PDT) Received-SPF: neutral (google.com: 74.125.82.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) client-ip=74.125.82.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) smtp.mail=sangwook.lee@linaro.org Received: by wwe6 with SMTP id 6so1225976wwe.31 for ; Thu, 21 Jul 2011 06:40:27 -0700 (PDT) Received: by 10.216.235.95 with SMTP id t73mr251222weq.10.1311255626971; Thu, 21 Jul 2011 06:40:26 -0700 (PDT) Received: from localhost.localdomain (host109-145-102-247.range109-145.btcentralplus.com [109.145.102.247]) by mx.google.com with ESMTPS id n21sm862323wed.43.2011.07.21.06.40.24 (version=SSLv3 cipher=OTHER); Thu, 21 Jul 2011 06:40:25 -0700 (PDT) From: Sangwook Lee To: samsung@lists.linaro.org, s.hari@samsung.com, patches@linaro.org Cc: Sangwook Lee Subject: [Samsung] [PATCH]ARM:EXYNOS4:Fix Samsung Power Domain Date: Thu, 21 Jul 2011 14:38:19 +0100 Message-Id: <1311255499-18979-1-git-send-email-sangwook.lee@linaro.org> X-Mailer: git-send-email 1.7.4.1 Postpone func:samsung_pd_init utill s3c_fb driver registers itself. If Runtime Power Management is called and power down LCD0_CONF s3cfb_probe hangs up with both Origen and SMDK Signed-off-by: Sangwook Lee --- arch/arm/plat-samsung/pd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-samsung/pd.c b/arch/arm/plat-samsung/pd.c index efe1d56..5ffc737 100644 --- a/arch/arm/plat-samsung/pd.c +++ b/arch/arm/plat-samsung/pd.c @@ -92,4 +92,4 @@ static int __init samsung_pd_init(void) return ret; } -arch_initcall(samsung_pd_init); +late_initcall_sync(samsung_pd_init);