Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753467AbdCTJ1X (ORCPT ); Mon, 20 Mar 2017 05:27:23 -0400 Received: from mx2.suse.de ([195.135.220.15]:51116 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753344AbdCTJ1S (ORCPT ); Mon, 20 Mar 2017 05:27:18 -0400 Date: Mon, 20 Mar 2017 10:27:13 +0100 Message-ID: From: Takashi Iwai To: "Laura Abbott" Cc: "Catalin Marinas" , "Mark Rutland" , "Will Deacon" , "Russell King" , "Arnd Bergmann" , "Kees Cook" , "David S. Miller" , "Heiko Carstens" , "Martin Schwidefsky" , "Wim Van Sebroeck" , "Daniel Borkmann" , , "Thomas Gleixner" , "Andrew Morton" , "David Airlie" , "Alexander Shishkin" , , "Jessica Yu" , "Ingo Molnar" , "Guenter Roeck" , , , , , "H. Peter Anvin" Subject: Re: [PATCHv3 13/16] ALSA: Use set_memory.h header In-Reply-To: <1488920133-27229-14-git-send-email-labbott@redhat.com> References: <1488920133-27229-1-git-send-email-labbott@redhat.com> <1488920133-27229-14-git-send-email-labbott@redhat.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.1 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1959 Lines: 72 On Tue, 07 Mar 2017 21:55:30 +0100, Laura Abbott wrote: > > set_memory_* functions have moved to set_memory.h. Switch to this > explicitly. > > Signed-off-by: Laura Abbott > --- > v3: Add a few other files caught by 0day bot I hoped we could get rid of the ifdef, but other than that, feel free to take my ack for the sound part: Acked-by: Takashi Iwai thanks, Takashi > --- > sound/pci/hda/hda_intel.c | 2 +- > sound/pci/intel8x0.c | 4 +++- > sound/x86/intel_hdmi_audio.c | 2 +- > 3 files changed, 5 insertions(+), 3 deletions(-) > > diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c > index c8256a8..64d6a34 100644 > --- a/sound/pci/hda/hda_intel.c > +++ b/sound/pci/hda/hda_intel.c > @@ -53,7 +53,7 @@ > #ifdef CONFIG_X86 > /* for snoop control */ > #include > -#include > +#include > #include > #endif > #include > diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c > index 9720a30..6d17b17 100644 > --- a/sound/pci/intel8x0.c > +++ b/sound/pci/intel8x0.c > @@ -40,7 +40,9 @@ > #include > /* for 440MX workaround */ > #include > -#include > +#ifdef CONFIG_X86 > +#include > +#endif > > MODULE_AUTHOR("Jaroslav Kysela "); > MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7012; Ali 5455"); > diff --git a/sound/x86/intel_hdmi_audio.c b/sound/x86/intel_hdmi_audio.c > index c505b01..664b7fe 100644 > --- a/sound/x86/intel_hdmi_audio.c > +++ b/sound/x86/intel_hdmi_audio.c > @@ -30,7 +30,7 @@ > #include > #include > #include > -#include > +#include > #include > #include > #include > -- > 2.7.4 > >