From patchwork Mon Apr 2 14:31:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 7574 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 6D49023E47 for ; Mon, 2 Apr 2012 14:31:14 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 3392BA18147 for ; Mon, 2 Apr 2012 14:31:14 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id e36so5965059iag.11 for ; Mon, 02 Apr 2012 07:31:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=JLibwizhjn4XRaar8oHIeA+KfBec15RkdsTzG7y5hIA=; b=SYT21ONb+jkdS8AqLlw9KTv9BhEO4gtvYYCMCpNHVWNzTNCvpuhI40IuMBhFyrnC+T rJ3u9jMaJxCLmGcV8FPRI8R8NKp+zL8N1P1npMf/WmuH37cF1FyfgD5Lq1kaEyiFYaR1 /Ls5Y4vYNHY+ZAnQuRaRPYiz0q3xyRSzwe6M1QsaNecwYHmRECiVrqQT29Cyo+k0Ql0p nBaTHA0Cbsrf3wfOBN0IrhlXf1MFFboVEfg0CcF1wOGTXSsCzAvbAJBhpS2pGnlQCpbH im5InLFL/Libxnao3VscUmnMXswgMDOD2NPmmyeP5jsf4jvs1lnPTC08pZtzPwqyBAuz Aspw== Received: by 10.50.212.101 with SMTP id nj5mr5643398igc.41.1333377073960; Mon, 02 Apr 2012 07:31:13 -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.231.5.205 with SMTP id 13csp113732ibw; Mon, 2 Apr 2012 07:31:13 -0700 (PDT) Received: by 10.180.24.35 with SMTP id r3mr26286647wif.7.1333377072041; Mon, 02 Apr 2012 07:31:12 -0700 (PDT) Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by mx.google.com with ESMTPS id j20si18747749wed.116.2012.04.02.07.31.11 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Apr 2012 07:31:12 -0700 (PDT) Received-SPF: neutral (google.com: 74.125.82.178 is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) client-ip=74.125.82.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.178 is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) smtp.mail=lee.jones@linaro.org Received: by mail-we0-f178.google.com with SMTP id a13so2355119wer.37 for ; Mon, 02 Apr 2012 07:31:11 -0700 (PDT) Received: by 10.180.73.143 with SMTP id l15mr25654116wiv.11.1333377071500; Mon, 02 Apr 2012 07:31:11 -0700 (PDT) Received: from localhost.localdomain (cpc1-aztw13-0-0-cust473.18-1.cable.virginmedia.com. [77.102.241.218]) by mx.google.com with ESMTPS id n8sm55846402wix.10.2012.04.02.07.31.10 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Apr 2012 07:31:10 -0700 (PDT) From: Lee Jones To: linux-arm-kernel@lists.infradead.org Cc: arnd@arndb.de, Lee Jones Subject: [PATCH 2/2] ARM: ux500: Fix unmet direct dependency Date: Mon, 2 Apr 2012 15:31:04 +0100 Message-Id: <1333377064-8093-2-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1333377064-8093-1-git-send-email-lee.jones@linaro.org> References: <1333377064-8093-1-git-send-email-lee.jones@linaro.org> X-Gm-Message-State: ALoCoQn+2HUckzeT/mikfOAqdgoFgfT9PJk2WF7Q0OnZV5HYBB8Hc2IZNcQTDopsfXBMNVo+6Gzo A recent change to a Kconfig configuration saw MACH_U8500 remove TPS6105X selection. In doing so Kconfig stopped selecting REGULATORS, which is still required. This patch sees UX500_SOC_DB8500 implicitly select it instead. Signed-off-by: Lee Jones --- arch/arm/mach-ux500/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index 880d02e..ef7099e 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig @@ -17,6 +17,7 @@ config UX500_SOC_DB5500 config UX500_SOC_DB8500 bool select MFD_DB8500_PRCMU + select REGULATOR select REGULATOR_DB8500_PRCMU select CPU_FREQ_TABLE if CPU_FREQ