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=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable 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 4A035C63798 for ; Tue, 27 Oct 2020 17:06:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E68D621D24 for ; Tue, 27 Oct 2020 17:06:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603818391; bh=6M83Bp7CN6q9gAdkscBTEoyTQP1NK/STJR2yLE6JlhU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=AkcV88Xg9ZCAT4RaS3JyThNYBRSUNB+OrQi9ht0y4AEc2pMQscIi1iqzMNuOBL8Qw aRg2cisSf4QSD5NmRwh6JjXgRqU4+LlEOYefUHXszEAUFw6bmOp5vopOxyl62zhXXR T4Hn4yN1xn3kV/D9ru12LbFUAsaWPGMae35w8lJI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1787416AbgJ0PAI (ORCPT ); Tue, 27 Oct 2020 11:00:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:52412 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1775351AbgJ0Owl (ORCPT ); Tue, 27 Oct 2020 10:52:41 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 850E620732; Tue, 27 Oct 2020 14:52:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603810361; bh=6M83Bp7CN6q9gAdkscBTEoyTQP1NK/STJR2yLE6JlhU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LOD7m+Xm3VeXVdV/twPSwlgVDkVNp87ovxMa57fvgz5emzY1EW7HLLkmrHF0kTxdb ybKzDe7F8hyXKfjRLY0YSCOgocAOERTUgbq1iu+67Ln5w6DjrkkrdaCbwzlZAOxhQ5 josvEBWOfrWBqGykShalnQKmfNfX+JlAZ8L6jR84= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Randy Dunlap , Michal Simek , Michal Simek , Masahiro Yamada , Sasha Levin Subject: [PATCH 5.8 081/633] microblaze: fix kbuild redundant file warning Date: Tue, 27 Oct 2020 14:47:04 +0100 Message-Id: <20201027135526.491361239@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135522.655719020@linuxfoundation.org> References: <20201027135522.655719020@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap [ Upstream commit 4a17e8513376bb23f814d3e340a5692a12c69369 ] 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: 630f289b7114 ("asm-generic: make more kernel-space headers mandatory") Signed-off-by: Randy Dunlap Cc: Michal Simek Cc: Michal Simek Cc: Masahiro Yamada Reviewed-by: Masahiro Yamada Link: https://lore.kernel.org/r/4d992aee-8a69-1769-e622-8d6d6e316346@infradead.org Signed-off-by: Michal Simek Signed-off-by: Sasha Levin --- arch/microblaze/include/asm/Kbuild | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/microblaze/include/asm/Kbuild b/arch/microblaze/include/asm/Kbuild index 2e87a9b6d312f..63bce836b9f10 100644 --- a/arch/microblaze/include/asm/Kbuild +++ b/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 -- 2.25.1