summaryrefslogtreecommitdiffstats
path: root/sound/oss/dmasound/dmasound_q40.c
diff options
context:
space:
mode:
authorAl Viro2005-10-21 09:22:18 +0200
committerLinus Torvalds2005-10-28 17:16:50 +0200
commit1ef64e670e3bc27e0c3c83810ca36e19924c35c6 (patch)
treeb024df98dcbe0bc28c967559da27a14254698887 /sound/oss/dmasound/dmasound_q40.c
parent[PATCH] gfp_t: drivers/infiniband (diff)
downloadkernel-qcow2-linux-1ef64e670e3bc27e0c3c83810ca36e19924c35c6.tar.gz
kernel-qcow2-linux-1ef64e670e3bc27e0c3c83810ca36e19924c35c6.tar.xz
kernel-qcow2-linux-1ef64e670e3bc27e0c3c83810ca36e19924c35c6.zip
[PATCH] gfp_t: sound
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/oss/dmasound/dmasound_q40.c')
-rw-r--r--sound/oss/dmasound/dmasound_q40.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/dmasound/dmasound_q40.c b/sound/oss/dmasound/dmasound_q40.c
index 92c25a0174db..1ddaa6284b08 100644
--- a/sound/oss/dmasound/dmasound_q40.c
+++ b/sound/oss/dmasound/dmasound_q40.c
@@ -36,7 +36,7 @@ static int expand_data; /* Data for expanding */
/*** Low level stuff *********************************************************/
-static void *Q40Alloc(unsigned int size, int flags);
+static void *Q40Alloc(unsigned int size, gfp_t flags);
static void Q40Free(void *, unsigned int);
static int Q40IrqInit(void);
#ifdef MODULE
@@ -358,7 +358,7 @@ static TRANS transQ40Compressing = {
/*** Low level stuff *********************************************************/
-static void *Q40Alloc(unsigned int size, int flags)
+static void *Q40Alloc(unsigned int size, gfp_t flags)
{
return kmalloc(size, flags); /* change to vmalloc */
}