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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8BDF0C00140 for ; Tue, 26 Jul 2022 19:05:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239676AbiGZTE6 (ORCPT ); Tue, 26 Jul 2022 15:04:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41048 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231810AbiGZTE4 (ORCPT ); Tue, 26 Jul 2022 15:04:56 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 976AD326D0 for ; Tue, 26 Jul 2022 12:04:55 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 4AE7BB819C2 for ; Tue, 26 Jul 2022 19:04:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AFF59C433D7; Tue, 26 Jul 2022 19:04:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1658862293; bh=3IRGUYh3u9rTFLy437yI96MUoBiwVyifVYbC4EAueFc=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=knxiO1d/K2XnWqfeKTHFKkacRcOuCmkuRkwsLFnYoF+tp6nj7Vf/boYC0msdDI20G 8JJWc8HJwzDB6RQoIOnDUsorcof7J7zu5sJmMg73ZYHfZNGuk5cvGYFZrE/NNsuovo o+4/spQmSkHnx3MQw4I1AtmwUsJeTNnT6/n9n/GLFCI34TqOqNDWLRIJnEMmPD3hmr +z8wLgkhhSJv92jWM9II1VF9ZZugf3YUajsDIh4IwfcvjgViosyT8vu7Z4Xl8fseR6 zjX38CEN0iFT2yT9yhz5hmJ2R52tZa0/XNCdMWR7S1kEWj3MHs33tewVYQ4oIv0o5Y WUi5wf7CjZL7Q== Date: Tue, 26 Jul 2022 14:04:50 -0500 From: Bjorn Helgaas To: Randy Dunlap Cc: linux-kernel@vger.kernel.org, Stafford Horne , Bjorn Helgaas , Borislav Petkov , Dave Hansen , x86@kernel.org Subject: Re: [PATCH -next] x86/cyrix: include header linux/isa-dma.h Message-ID: <20220726190450.GA81971@bhelgaas> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220725202224.29269-1-rdunlap@infradead.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 25, 2022 at 01:22:24PM -0700, Randy Dunlap wrote: > x86/kernel/cpu/cyrix.c now needs to include > since the 'isa_dma_bridge_buggy' variable was moved to it. > > Fixes this build error: > > ../arch/x86/kernel/cpu/cyrix.c: In function ‘init_cyrix’: > ../arch/x86/kernel/cpu/cyrix.c:277:17: error: ‘isa_dma_bridge_buggy’ undeclared (first use in this function) > 277 | isa_dma_bridge_buggy = 2; > > Fixes: abb4970ac335 ("PCI: Move isa_dma_bridge_buggy out of asm/dma.h") > Signed-off-by: Randy Dunlap I appended this to my pci/header-cleanup-immutable branch for v5.20, thanks! > Cc: Stafford Horne > Cc: Bjorn Helgaas > Cc: Borislav Petkov > Cc: Dave Hansen > Cc: x86@kernel.org > --- > arch/x86/kernel/cpu/cyrix.c | 1 + > 1 file changed, 1 insertion(+) > > --- a/arch/x86/kernel/cpu/cyrix.c > +++ b/arch/x86/kernel/cpu/cyrix.c > @@ -1,6 +1,7 @@ > // SPDX-License-Identifier: GPL-2.0 > #include > #include > +#include > #include > #include > #include