aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorFrank Lichtenheld <frank@lichtenheld.de>2007-07-17 13:50:53 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 16:53:29 -0400
commit44052e0d91757ecac4a2f659ea3e1a658dd6057e (patch)
tree264dbf4cdb55db11316ec30e184eefb17ace1d8c /sound
parentbec85e8031f7d390643df27e74f8bc9715bb8224 (diff)
mixart: Add missing vmalloc.h include
Fixes the following build error: CC sound/pci/mixart/mixart_hwdep.o sound/pci/mixart/mixart_hwdep.c: In function ‘mixart_hwdep_dsp_load’: sound/pci/mixart/mixart_hwdep.c:610: error: implicit declaration of function ‘vmalloc’ sound/pci/mixart/mixart_hwdep.c:617: error: implicit declaration of function ‘vfree’ Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/mixart/mixart_hwdep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/mixart/mixart_hwdep.c b/sound/pci/mixart/mixart_hwdep.c
index 1d9232d2db34..170781a72292 100644
--- a/sound/pci/mixart/mixart_hwdep.c
+++ b/sound/pci/mixart/mixart_hwdep.c
@@ -24,6 +24,7 @@
24#include <linux/interrupt.h> 24#include <linux/interrupt.h>
25#include <linux/pci.h> 25#include <linux/pci.h>
26#include <linux/firmware.h> 26#include <linux/firmware.h>
27#include <linux/vmalloc.h>
27#include <asm/io.h> 28#include <asm/io.h>
28#include <sound/core.h> 29#include <sound/core.h>
29#include "mixart.h" 30#include "mixart.h"