From patchwork Sat Oct 10 12:40:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 528620 X-Patchwork-Delegate: hdegoede@redhat.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 56DAE140322 for ; Sat, 10 Oct 2015 23:40:53 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AB8724B833; Sat, 10 Oct 2015 14:40:50 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zpo2CpHZdoui; Sat, 10 Oct 2015 14:40:50 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2B5E14B7E9; Sat, 10 Oct 2015 14:40:50 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8BED14B816 for ; Sat, 10 Oct 2015 14:40:47 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AKM16WMWiy3H for ; Sat, 10 Oct 2015 14:40:47 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by theia.denx.de (Postfix) with ESMTPS id 30F9C4B7E9 for ; Sat, 10 Oct 2015 14:40:44 +0200 (CEST) Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 053E291E9D; Sat, 10 Oct 2015 12:40:43 +0000 (UTC) Received: from shalem.localdomain.com (vpn1-7-121.ams2.redhat.com [10.36.7.121]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9ACeb2O023318; Sat, 10 Oct 2015 08:40:41 -0400 From: Hans de Goede To: Ian Campbell Date: Sat, 10 Oct 2015 14:40:33 +0200 Message-Id: <1444480834-15108-2-git-send-email-hdegoede@redhat.com> In-Reply-To: <1444480834-15108-1-git-send-email-hdegoede@redhat.com> References: <1444480834-15108-1-git-send-email-hdegoede@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH 2/3] sunxi: power: Change axp209 LDO3 and LDO4 default to disabled X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" LDO3 and LDO4 are normally either unused, or used to power csi attached camera sensors, and as such do not need to be enabled at boot time. Signed-off-by: Hans de Goede --- drivers/power/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index 21e4929..c0d7aa5 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -126,7 +126,7 @@ config AXP_ALDO2_VOLT config AXP_ALDO3_VOLT int "axp pmic (a)ldo3 voltage" depends on AXP209_POWER || AXP221_POWER - default 2800 if AXP209_POWER + default 0 if AXP209_POWER default 3000 if MACH_SUN6I || MACH_SUN8I ---help--- Set the voltage (mV) to program the axp pmic aldo3 at, set to 0 to @@ -137,7 +137,7 @@ config AXP_ALDO3_VOLT config AXP_ALDO4_VOLT int "axp pmic (a)ldo4 voltage" depends on AXP209_POWER - default 2800 if AXP209_POWER + default 0 if AXP209_POWER ---help--- Set the voltage (mV) to program the axp pmic aldo4 at, set to 0 to disable aldo4.