tm6000: Cleaned up code style in tm6000-alsa.c
authorCurtis McEnroe <programble@gmail.com>
Fri, 3 Jun 2011 00:33:34 +0000 (20:33 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 28 Jun 2011 21:27:24 +0000 (14:27 -0700)
Fixed all errors but one (possibly a mistake by the checker) reported by
the checker.

Signed-off-by: Curtis McEnroe <programble@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/tm6000/tm6000-alsa.c

index 2b96047c29831e70fe6b6119a4cb97e2833548af..ddfd7c33361ba31ba64fb1a4ef3a4a79b5b1c260 100644 (file)
@@ -18,7 +18,7 @@
 #include <linux/slab.h>
 #include <linux/vmalloc.h>
 
-#include <asm/delay.h>
+#include <linux/delay.h>
 #include <sound/core.h>
 #include <sound/pcm.h>
 #include <sound/pcm_params.h>
@@ -255,7 +255,7 @@ static int tm6000_fillbuf(struct tm6000_core *core, char *buf, int size)
                        length * stride);
 
 #ifndef NO_PCM_LOCK
-       snd_pcm_stream_lock(substream);
+       snd_pcm_stream_lock(substream);
 #endif
 
        chip->buf_pos += length;
@@ -269,7 +269,7 @@ static int tm6000_fillbuf(struct tm6000_core *core, char *buf, int size)
        }
 
 #ifndef NO_PCM_LOCK
-       snd_pcm_stream_unlock(substream);
+       snd_pcm_stream_unlock(substream);
 #endif
 
        if (period_elapsed)
@@ -461,7 +461,7 @@ int tm6000_audio_init(struct tm6000_core *dev)
        if (rc < 0)
                goto error_chip;
 
-       dprintk(1,"Registered audio driver for %s\n", card->longname);
+       dprintk(1, "Registered audio driver for %s\n", card->longname);
 
        return 0;