From patchwork Wed Dec 6 04:16:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 845026 X-Patchwork-Delegate: yamada.m@jp.panasonic.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="RqeR4syS"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3ys5101TC7z9sNx for ; Wed, 6 Dec 2017 15:17:06 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id EE470C21F82; Wed, 6 Dec 2017 04:17:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 4A436C21DE7; Wed, 6 Dec 2017 04:16:58 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 0CA4DC21DCE; Wed, 6 Dec 2017 04:16:56 +0000 (UTC) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by lists.denx.de (Postfix) with ESMTPS id B5E8EC21E14 for ; Wed, 6 Dec 2017 04:16:55 +0000 (UTC) Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id vB64Gleh003091; Wed, 6 Dec 2017 13:16:47 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com vB64Gleh003091 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1512533807; bh=BPhUOLovuuGewo53JAnwOlvMhDZLBim9ubtQBMDCK20=; h=From:To:Cc:Subject:Date:From; b=RqeR4syS0xzMuSQxmetctgRyjUreHbqgBT8q555roakS4TyADCEhpASnNePHbcUxT Eo7vG/kdZwnhdZb5c0LhwWN8ysCpKC1JhlGTQfpgWzVGcapMpQiKeXSRRj8Po7Gior 6bbhteAo8StIz2G4+8TnTvPbcTvD9EjLsD6r+sP7vIyffaRbshaZjqK7gFU2i7sQo9 VTX1QuLC7bl4eqzYljju0wK+WdBNVgOpYXzNLiklT6d7n+Q5Xg4oXFddykjxDiuvWb 9/ry3QR65JgrQ+9ON0ddFmtNBpbVx3LnHjeqKleYv+4DiVGLx5of/2yvHDzSq59lpb Fy6IURxqgycrw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 6 Dec 2017 13:16:45 +0900 Message-Id: <1512533805-22301-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] ARM: uniphier: link pll-base-ld20.o for PXs3 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 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" Fix the link error for the combination of CONFIG_ARCH_UNIPHIER_LD11=n CONFIG_ARCH_UNIPHIER_LD20=n CONFIG_ARCH_UNIPHIER_PXS3=y Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/clk/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-uniphier/clk/Makefile b/arch/arm/mach-uniphier/clk/Makefile index 76633bc..5cd0897 100644 --- a/arch/arm/mach-uniphier/clk/Makefile +++ b/arch/arm/mach-uniphier/clk/Makefile @@ -27,3 +27,4 @@ endif obj-$(CONFIG_ARCH_UNIPHIER_LD11) += pll-base-ld20.o obj-$(CONFIG_ARCH_UNIPHIER_LD20) += pll-base-ld20.o +obj-$(CONFIG_ARCH_UNIPHIER_PXS3) += pll-base-ld20.o