summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaura Abbott <labbott@redhat.com>2017-05-08 18:58:35 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-05-08 20:15:14 -0400
commit7f80f513588dac3d9cbf886a3f2f6354d821695e (patch)
treefa0e07d5c11ec1fc0241945fa23d10b4bbc0c408
parent50327ddfbc926e68da1958e4fac51f1106f5e730 (diff)
alsa: use set_memory.h header
set_memory_* functions have moved to set_memory.h. Switch to this explicitly. Link: http://lkml.kernel.org/r/1488920133-27229-14-git-send-email-labbott@redhat.com Signed-off-by: Laura Abbott <labbott@redhat.com> Acked-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--sound/pci/hda/hda_intel.c2
-rw-r--r--sound/pci/intel8x0.c4
-rw-r--r--sound/x86/intel_hdmi_audio.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index b786fbab029f..1770f085c2a6 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -53,7 +53,7 @@
53#ifdef CONFIG_X86 53#ifdef CONFIG_X86
54/* for snoop control */ 54/* for snoop control */
55#include <asm/pgtable.h> 55#include <asm/pgtable.h>
56#include <asm/cacheflush.h> 56#include <asm/set_memory.h>
57#include <asm/cpufeature.h> 57#include <asm/cpufeature.h>
58#endif 58#endif
59#include <sound/core.h> 59#include <sound/core.h>
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c
index 9720a30dbfff..6d17b171c17b 100644
--- a/sound/pci/intel8x0.c
+++ b/sound/pci/intel8x0.c
@@ -40,7 +40,9 @@
40#include <sound/initval.h> 40#include <sound/initval.h>
41/* for 440MX workaround */ 41/* for 440MX workaround */
42#include <asm/pgtable.h> 42#include <asm/pgtable.h>
43#include <asm/cacheflush.h> 43#ifdef CONFIG_X86
44#include <asm/set_memory.h>
45#endif
44 46
45MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); 47MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
46MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7012; Ali 5455"); 48MODULE_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 c505b019e09c..664b7fe206d6 100644
--- a/sound/x86/intel_hdmi_audio.c
+++ b/sound/x86/intel_hdmi_audio.c
@@ -30,7 +30,7 @@
30#include <linux/pm_runtime.h> 30#include <linux/pm_runtime.h>
31#include <linux/dma-mapping.h> 31#include <linux/dma-mapping.h>
32#include <linux/delay.h> 32#include <linux/delay.h>
33#include <asm/cacheflush.h> 33#include <asm/set_memory.h>
34#include <sound/core.h> 34#include <sound/core.h>
35#include <sound/asoundef.h> 35#include <sound/asoundef.h>
36#include <sound/pcm.h> 36#include <sound/pcm.h>