From patchwork Tue Nov 8 01:55:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 81222 Delivered-To: patch@linaro.org Received: by 10.140.97.165 with SMTP id m34csp1314613qge; Mon, 7 Nov 2016 17:53:43 -0800 (PST) X-Received: by 10.99.242.5 with SMTP id v5mr14803432pgh.181.1478570023454; Mon, 07 Nov 2016 17:53:43 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o129si33909873pfb.289.2016.11.07.17.53.43; Mon, 07 Nov 2016 17:53:43 -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; dkim=pass header.i=@nifty.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 S1752627AbcKHBxj (ORCPT + 27 others); Mon, 7 Nov 2016 20:53:39 -0500 Received: from conuserg-08.nifty.com ([210.131.2.75]:39487 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752426AbcKHBxe (ORCPT ); Mon, 7 Nov 2016 20:53:34 -0500 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-08.nifty.com with ESMTP id uA81r8S7006440; Tue, 8 Nov 2016 10:53:09 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com uA81r8S7006440 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1478569989; bh=7UcTrOalpyaaaHQ9rPaPsXOzZK0Oemqq38vqyPqKq/Q=; h=From:To:Cc:Subject:Date:From; b=uB9s0SQM0yeMEiX6Ozs4gqU7dDpE2gX4DOid1gAd25yEUneR0QHl5iPWY/oZ2RPtD lLIpiIz/vh8DlshVJA3CehUXS26EwEQSpaAd4q+mkhwS+a0V1LQ1WMxXad8+PSSCRe DkslHsmnw6aQzjiS4oizhuo58VHyvY0azNk8plAq4l2IJhbx/02TjqMekm0XV5MVDz S1x9iBeRgHi8kqjMOZmLZC8EZE/3tkvc59bA8iY1V0igNHAhuwIv4cqwH20/B5hOzL WFAkGNWTMpduOEpJhTDSfROIGl+L4asz5iid2LAUywJVPYHdcTPmfb4WImOu+5UKFw lora4IUgvjUdQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: Martin Schwidefsky , Heiko Carstens , linux-s390@vger.kernel.org Cc: Paul Bolle , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] s390: remove unneeded dependency for gen_facilities Date: Tue, 8 Nov 2016 10:55:47 +0900 Message-Id: <1478570147-30873-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The dependency between the object and the source is handled by scripts/Makefile.host, so only "hostprogs-y += gen_facilities" is fine. Signed-off-by: Masahiro Yamada --- arch/s390/tools/Makefile | 2 -- 1 file changed, 2 deletions(-) -- 1.9.1 Acked-by: Heiko Carstens diff --git a/arch/s390/tools/Makefile b/arch/s390/tools/Makefile index 6d9814c..4b5e1e4 100644 --- a/arch/s390/tools/Makefile +++ b/arch/s390/tools/Makefile @@ -9,7 +9,5 @@ define filechk_facilities.h $(obj)/gen_facilities endef -$(obj)/gen_facilities.o: $(srctree)/arch/s390/tools/gen_facilities.c - include/generated/facilities.h: $(obj)/gen_facilities FORCE $(call filechk,facilities.h)