From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.1 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D8C69C433E2 for ; Fri, 28 Aug 2020 18:35:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AAB7E20838 for ; Fri, 28 Aug 2020 18:35:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="NWUBk4Hf" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726824AbgH1SfY (ORCPT ); Fri, 28 Aug 2020 14:35:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37624 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726010AbgH1SfX (ORCPT ); Fri, 28 Aug 2020 14:35:23 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E421EC061264; Fri, 28 Aug 2020 11:35:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To:Content-ID: Content-Description:In-Reply-To:References; bh=fRfRVruH5jHX08IIGYa0MUNIexkD4H41MbdVql35umw=; b=NWUBk4HfipgQB8gwCdIYjwZpG5 1P2SVoMY3d18cqOpOrWrmzKDbJWR+WeOdco4nwQplbyZLaAqN2H5bp5H75OA18Gm2YDoi/sG4uoTW vBSKzlhZkKs4N3qsjTa8EIgOnjyg0Jex0J9NbILvxmNCkdrXUeiTTrACof/am7Xv8D0iolYRZaHyQ pRpfafOjv1ro1OdbllCCOyGK3iMm3axHBfhYRjplhFkzgMoF5MtdHTgLRCbn1EvfexmXMHp3VALgl tPBSsI6som7OtehFztJ8QDaUjhI3/ALaeZUqCtuvBZKALIfwgbTcvRPasxE2lrJRNAKezr3IYIlO/ 2NzvxmBg==; Received: from [2601:1c0:6280:3f0::19c2] by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1kBjDa-0000KB-98; Fri, 28 Aug 2020 18:35:18 +0000 To: LKML , linux-kbuild , Michal Simek , Michal Simek Cc: Masahiro Yamada From: Randy Dunlap Subject: [PATCH] microblaze: fix kbuild redundant file warning Message-ID: <21eddfa7-2b7c-00c4-ad5b-40878036f987@infradead.org> Date: Fri, 28 Aug 2020 11:35:14 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org From: Randy Dunlap Fix build warning since this file is already listed in include/asm-generic/Kbuild. ../scripts/Makefile.asm-generic:25: redundant generic-y found in arch/microblaze/include/asm/Kbuild: hw_irq.h Fixes: 7e8f54cd4e26 ("microblaze: Remove empty headers") Signed-off-by: Randy Dunlap Cc: Michal Simek Cc: Michal Simek Cc: Masahiro Yamada --- arch/microblaze/include/asm/Kbuild | 1 - 1 file changed, 1 deletion(-) --- linux-next-20200825.orig/arch/microblaze/include/asm/Kbuild +++ linux-next-20200825/arch/microblaze/include/asm/Kbuild @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 generated-y += syscall_table.h generic-y += extable.h -generic-y += hw_irq.h generic-y += kvm_para.h generic-y += local64.h generic-y += mcs_spinlock.h