]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] Re: ALSA patch..
authorJaroslav Kysela <perex@suse.cz>
Tue, 30 Apr 2002 07:19:56 +0000 (00:19 -0700)
committerLinus Torvalds <torvalds@home.transmeta.com>
Tue, 30 Apr 2002 07:19:56 +0000 (00:19 -0700)
I overlooked these single line changes.  Here are next corrections
against ChangeSet 1.547:

include/sound/asound.h
include/sound/version.h
sound/core/memory.c
sound/core/seq/seq_dummy.c
sound/core/seq/seq_midi.c
sound/core/seq/seq_midi_event.c
sound/core/seq/seq_queue.h
sound/drivers/mpu401/mpu401_uart.c

index 3c7df6d5964916b549d436449af934fa6de46092..8ea3e38a656b6119dda37ef96d5aaa80d89374c2 100644 (file)
@@ -30,6 +30,7 @@
 #ifdef __KERNEL__
 
 #include <linux/types.h>
+#include <linux/time.h>
 #include <asm/byteorder.h>
 
 #if  __LITTLE_ENDIAN == 1234
index f1fab0435d0682cb2a5e0f4449e3c73aa393bc82..05e4f4e5c79dbd314d848c3ca0f12225bd99c024 100644 (file)
@@ -1,3 +1,3 @@
 /* include/version.h.  Generated automatically by configure.  */
 #define CONFIG_SND_VERSION "0.9.0rc1"
-#define CONFIG_SND_DATE " (Sun Apr 28 20:04:42 2002 UTC)"
+#define CONFIG_SND_DATE " (Mon Apr 29 06:46:09 2002 UTC)"
index 25664f8bf664af2d1e706d1109acf8bcf334a311..6cc7093972e81cc49c44556b6efdb1cfa4925ff1 100644 (file)
@@ -26,6 +26,7 @@
 #include <linux/init.h>
 #include <linux/slab.h>
 #include <linux/time.h>
+#include <linux/pci.h>
 #include <sound/core.h>
 #include <sound/info.h>
 
index fe259ff683606e951cceffc7ab72ce35931dd45f..80c925cf92e64b0bc80bb6b9a25e74f071193c41 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <sound/driver.h>
 #include <linux/init.h>
+#include <linux/slab.h>
 #include <sound/core.h>
 #include "seq_clientmgr.h"
 #include <sound/initval.h>
index d451effca18f7b4ad31d0e3324d0c3e9ffa0bd2c..85f915ee50bb5e0e0d1ec1e49e80432f055cb1b5 100644 (file)
@@ -29,6 +29,8 @@ Possible options for midisynth module:
 #include <sound/driver.h>
 #include <linux/init.h>
 #include <linux/slab.h>
+#include <linux/errno.h>
+#include <asm/semaphore.h>
 #include <sound/core.h>
 #include <sound/rawmidi.h>
 #include <sound/seq_kernel.h>
index fcb2205c0be755a22247601010dbd76f383f6450..57e186aef0d9b7b1b77db413b16bc40f7c1adaa4 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <sound/driver.h>
 #include <linux/slab.h>
+#include <linux/errno.h>
 #include <sound/core.h>
 #include <sound/seq_kernel.h>
 #include <sound/seq_midi_event.h>
index 82139c43e9bf3230ca9880713ce6562cc668c752..4c9a40a7f3e5e6349232d9b1d7d9ad5ebd88916f 100644 (file)
@@ -51,7 +51,7 @@ struct _snd_seq_queue {
        spinlock_t check_lock;
 
        /* clients which uses this queue (bitmap) */
-       unsigned int clients_bitmap[SNDRV_SEQ_MAX_CLIENTS/sizeof(unsigned int)];
+       unsigned int clients_bitmap[SNDRV_SEQ_MAX_CLIENTS/sizeof(unsigned long)];
        unsigned int clients;   /* users of this queue */
        struct semaphore timer_mutex;
 
index b399150e2a6fcac715f0807f1a6f1aed52cc3cc8..aa7b7ab62844fac5cdd1bc467f5c6497796fbade 100644 (file)
@@ -29,6 +29,8 @@
 #include <linux/init.h>
 #include <linux/slab.h>
 #include <linux/ioport.h>
+#include <linux/sched.h>
+#include <linux/errno.h>
 #include <sound/core.h>
 #include <sound/mpu401.h>