From patchwork Fri Jul 19 19:00:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 260329 X-Patchwork-Delegate: trini@ti.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 1F9C72C0098 for ; Sat, 20 Jul 2013 05:00:53 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 62D584A02A; Fri, 19 Jul 2013 21:00:50 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 5-CK5LPtjvgy; Fri, 19 Jul 2013 21:00:50 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 284924A025; Fri, 19 Jul 2013 21:00:41 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 63EC04A02D for ; Fri, 19 Jul 2013 21:00:38 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 nWg437FHRIrD for ; Fri, 19 Jul 2013 21:00:33 +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 mail-gh0-f177.google.com (mail-gh0-f177.google.com [209.85.160.177]) by theia.denx.de (Postfix) with ESMTPS id 40EC14A021 for ; Fri, 19 Jul 2013 21:00:27 +0200 (CEST) Received: by mail-gh0-f177.google.com with SMTP id f20so1394433ghb.22 for ; Fri, 19 Jul 2013 12:00:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:x-mailer; bh=aNMJUmTUSiGwZAFgseIhSj/ITEVzs1IqKVB31jfMtD8=; b=O+xo3DVqidQ7mS4rBMFnw2BD3Bje1PEyHQpLobvffjPtCMPDH6Fz8REIe7827fKG/M IZuBo4nXTpTHZT4WMkslg9IY0mUJRWrKW5sQ25sCVPDybilYVTK7Vjav4vkv+Fihtofd gRaak/eFKDYAAlsxKPxHzu4D3bDh+JjgSnmTqaF74ewmW8iWAZFRJ2Wtq9re6R4BU2T/ xmXCxe4ti8+/aX5YKl4r5ONIn4ehNW7qUUUiTQVvhWgxC+Kvjeik8xrGNz7gNTIumk6k B0cjvp/R3QxZfVb806h9bEBwtKYiRN8S15e46UpSlCW1PTxGrUenv9wQmCmFcJpzrbiP dV1A== X-Received: by 10.236.183.196 with SMTP id q44mr9403776yhm.145.1374260425866; Fri, 19 Jul 2013 12:00:25 -0700 (PDT) Received: from localhost.localdomain (cpe-065-184-250-089.ec.res.rr.com. [65.184.250.89]) by mx.google.com with ESMTPSA id b48sm23285743yhc.8.2013.07.19.12.00.24 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 19 Jul 2013 12:00:25 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 19 Jul 2013 15:00:21 -0400 Message-Id: <1374260426-9085-1-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 Subject: [U-Boot] [PATCH 1/6] spl/Makefile: Add drivers/power/pmic/libpmic to CONFIG_SPL_POWER_SUPPORT X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de We may need to access the PMIC code in SPL, when we have power set. Signed-off-by: Tom Rini --- spl/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spl/Makefile b/spl/Makefile index 01873de..6531a5e 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -73,7 +73,8 @@ LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o -LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o +LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o \ + drivers/power/pmic/libpmic.o LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o