[alsa-devel] [PATCH 1/2] ALSA: Remove superfluous header inclusions in memalloc.c
After cutting off the proc and page reservation codes, we don't need many headers any longer.
Signed-off-by: Takashi Iwai tiwai@suse.de --- sound/core/memalloc.c | 4 ---- 1 file changed, 4 deletions(-)
diff --git a/sound/core/memalloc.c b/sound/core/memalloc.c index be1544ac4613..e568c14ca88d 100644 --- a/sound/core/memalloc.c +++ b/sound/core/memalloc.c @@ -22,17 +22,13 @@ */
#include <linux/module.h> -#include <linux/proc_fs.h> #include <linux/init.h> -#include <linux/pci.h> #include <linux/slab.h> #include <linux/mm.h> -#include <linux/seq_file.h> #include <asm/uaccess.h> #include <linux/dma-mapping.h> #include <linux/genalloc.h> #include <linux/moduleparam.h> -#include <linux/mutex.h> #include <sound/memalloc.h>
Instead of keeping a separate snd-page-alloc module, merge into the core snd-pcm module, as we don't need to keep it as an individual module due to the drop of page reservation.
Signed-off-by: Takashi Iwai tiwai@suse.de --- sound/core/Makefile | 10 ++++------ sound/core/memalloc.c | 10 ---------- 2 files changed, 4 insertions(+), 16 deletions(-)
diff --git a/sound/core/Makefile b/sound/core/Makefile index 5e890cfed423..394a38909f6b 100644 --- a/sound/core/Makefile +++ b/sound/core/Makefile @@ -10,14 +10,12 @@ snd-$(CONFIG_SND_VMASTER) += vmaster.o snd-$(CONFIG_SND_KCTL_JACK) += ctljack.o snd-$(CONFIG_SND_JACK) += jack.o
-snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \ - pcm_memory.o +snd-pcm-y := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \ + pcm_memory.o memalloc.o +snd-pcm-$(CONFIG_SND_DMA_SGBUF) += sgbuf.o
snd-pcm-dmaengine-objs := pcm_dmaengine.o
-snd-page-alloc-y := memalloc.o -snd-page-alloc-$(CONFIG_SND_DMA_SGBUF) += sgbuf.o - snd-rawmidi-objs := rawmidi.o snd-timer-objs := timer.o snd-hrtimer-objs := hrtimer.o @@ -31,7 +29,7 @@ obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o obj-$(CONFIG_SND_TIMER) += snd-timer.o obj-$(CONFIG_SND_HRTIMER) += snd-hrtimer.o obj-$(CONFIG_SND_RTCTIMER) += snd-rtctimer.o -obj-$(CONFIG_SND_PCM) += snd-pcm.o snd-page-alloc.o +obj-$(CONFIG_SND_PCM) += snd-pcm.o obj-$(CONFIG_SND_DMAENGINE_PCM) += snd-pcm-dmaengine.o obj-$(CONFIG_SND_RAWMIDI) += snd-rawmidi.o
diff --git a/sound/core/memalloc.c b/sound/core/memalloc.c index e568c14ca88d..4595f93d151e 100644 --- a/sound/core/memalloc.c +++ b/sound/core/memalloc.c @@ -21,22 +21,12 @@ * */
-#include <linux/module.h> -#include <linux/init.h> #include <linux/slab.h> #include <linux/mm.h> -#include <asm/uaccess.h> #include <linux/dma-mapping.h> #include <linux/genalloc.h> -#include <linux/moduleparam.h> #include <sound/memalloc.h>
- -MODULE_AUTHOR("Takashi Iwai tiwai@suse.de, Jaroslav Kysela perex@perex.cz"); -MODULE_DESCRIPTION("Memory allocator for ALSA system."); -MODULE_LICENSE("GPL"); - - /* * * Generic memory allocators
participants (1)
-
Takashi Iwai