From patchwork Mon Feb 22 07:31:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 62469 Delivered-To: patch@linaro.org Received: by 10.112.43.199 with SMTP id y7csp1073249lbl; Sun, 21 Feb 2016 23:32:06 -0800 (PST) X-Received: by 10.66.236.132 with SMTP id uu4mr36145079pac.95.1456126326738; Sun, 21 Feb 2016 23:32:06 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 24si37976530pfo.28.2016.02.21.23.32.06; Sun, 21 Feb 2016 23:32:06 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753572AbcBVHcE (ORCPT + 30 others); Mon, 22 Feb 2016 02:32:04 -0500 Received: from conuserg011.nifty.com ([202.248.44.37]:32572 "EHLO conuserg011-v.nifty.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753420AbcBVHb7 (ORCPT ); Mon, 22 Feb 2016 02:31:59 -0500 Received: from beagle.diag.org (p14090-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.90]) (authenticated) by conuserg011-v.nifty.com with ESMTP id u1M7UdAo031731; Mon, 22 Feb 2016 16:30:43 +0900 X-Nifty-SrcIP: [153.142.97.90] From: Masahiro Yamada To: linux-arm-kernel@lists.infradead.org Cc: Russell King , Arnd Bergmann , Olof Johansson , Michal Marek , linux-kbuild@vger.kernel.org, Masahiro Yamada , Magnus Damm , Kees Cook , linux-kernel@vger.kernel.org, Roy Franz , Russell King , Geert Uytterhoeven , Simon Horman Subject: [PATCH 2/6] ARM: decompressor: drop more unneeded assignments to "targets" Date: Mon, 22 Feb 2016 16:31:13 +0900 Message-Id: <1456126277-14633-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1456126277-14633-1-git-send-email-yamada.masahiro@socionext.com> References: <1456126277-14633-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The objects "font.o" and "misc.o" are contained in $(OBJS), and it is already added to the "targets". Signed-off-by: Masahiro Yamada --- arch/arm/boot/compressed/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 7090ad3..476ef00 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile @@ -92,7 +92,7 @@ endif targets := vmlinux vmlinux.lds \ piggy.$(suffix_y) piggy.$(suffix_y).o \ lib1funcs.o ashldi3.o bswapsdi2.o \ - font.o head.o misc.o $(OBJS) + head.o $(OBJS) # Make sure files are removed during clean extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \