* [PATCH] visws: sound update (11/13)
@ 2003-02-14 12:58 Andrey Panin
0 siblings, 0 replies; only message in thread
From: Andrey Panin @ 2003-02-14 12:58 UTC (permalink / raw)
To: linux-kernel; +Cc: Linus Torvalds
[-- Attachment #1: Type: text/plain, Size: 203 bytes --]
Hi.
This patch contains SGI visws OSS sound driver update.
Please consider applying.
Best regards.
--
Andrey Panin | Embedded systems software developer
pazke@orbita1.ru | PGP key: wwwkeys.pgp.net
[-- Attachment #2: patch-visws-sound --]
[-- Type: text/plain, Size: 3966 bytes --]
diff -urN -X /usr/share/dontdiff linux-2.5.60.vanilla/sound/oss/Kconfig linux-2.5.60/sound/oss/Kconfig
--- linux-2.5.60.vanilla/sound/oss/Kconfig Thu Feb 13 20:32:37 2003
+++ linux-2.5.60/sound/oss/Kconfig Thu Feb 13 20:42:02 2003
@@ -225,7 +225,7 @@
config SOUND_VWSND
tristate "SGI Visual Workstation Sound"
- depends on SOUND_PRIME!=n && VISWS && SOUND
+ depends on SOUND_PRIME!=n && X86_VISWS && SOUND
help
Say Y or M if you have an SGI Visual Workstation and you want to be
able to use its on-board audio. Read
diff -urN -X /usr/share/dontdiff linux-2.5.60.vanilla/sound/oss/vwsnd.c linux-2.5.60/sound/oss/vwsnd.c
--- linux-2.5.60.vanilla/sound/oss/vwsnd.c Thu Feb 13 20:32:36 2003
+++ linux-2.5.60/sound/oss/vwsnd.c Thu Feb 13 20:42:02 2003
@@ -144,14 +144,12 @@
#include <linux/module.h>
#include <linux/init.h>
-#include <linux/sched.h>
-#include <linux/semaphore.h>
-#include <linux/stddef.h>
#include <linux/spinlock.h>
#include <linux/smp_lock.h>
-#include <asm/fixmap.h>
-#include <asm/cobalt.h>
+#include <linux/wait.h>
+#include <linux/interrupt.h>
#include <asm/semaphore.h>
+#include <asm/mach-visws/cobalt.h>
#include "sound_config.h"
@@ -256,7 +254,7 @@
* Returns 0 on success, -errno on failure.
*/
-static int li_create(lithium_t *lith, unsigned long baseaddr)
+static int __init li_create(lithium_t *lith, unsigned long baseaddr)
{
static void li_destroy(lithium_t *);
@@ -3040,15 +3038,15 @@
}
static struct file_operations vwsnd_audio_fops = {
- owner: THIS_MODULE,
- llseek: no_llseek,
- read: vwsnd_audio_read,
- write: vwsnd_audio_write,
- poll: vwsnd_audio_poll,
- ioctl: vwsnd_audio_ioctl,
- mmap: vwsnd_audio_mmap,
- open: vwsnd_audio_open,
- release: vwsnd_audio_release,
+ .owner = THIS_MODULE,
+ .llseek = no_llseek,
+ .read = vwsnd_audio_read,
+ .write = vwsnd_audio_write,
+ .poll = vwsnd_audio_poll,
+ .ioctl = vwsnd_audio_ioctl,
+ .mmap = vwsnd_audio_mmap,
+ .open = vwsnd_audio_open,
+ .release = vwsnd_audio_release,
};
/*****************************************************************************/
@@ -3230,11 +3228,11 @@
}
static struct file_operations vwsnd_mixer_fops = {
- owner: THIS_MODULE,
- llseek: no_llseek,
- ioctl: vwsnd_mixer_ioctl,
- open: vwsnd_mixer_open,
- release: vwsnd_mixer_release,
+ .owner = THIS_MODULE,
+ .llseek = no_llseek,
+ .ioctl = vwsnd_mixer_ioctl,
+ .open = vwsnd_mixer_open,
+ .release = vwsnd_mixer_release,
};
/*****************************************************************************/
@@ -3281,7 +3279,8 @@
return 0;
}
- printk(KERN_INFO "probe_vwsnd: lithium audio found\n");
+ printk(KERN_INFO "vwsnd: lithium audio at mmio %#x irq %d\n",
+ hw_config->io_base, hw_config->irq);
return 1;
}
@@ -3309,7 +3308,7 @@
if (err)
goto fail1;
- init_waitqueue(&devc->open_wait);
+ init_waitqueue_head(&devc->open_wait);
devc->rport.hwbuf_size = HWBUF_SIZE;
devc->rport.hwbuf_vaddr = __get_free_pages(GFP_KERNEL, HWBUF_ORDER);
@@ -3378,18 +3377,18 @@
/* Initialize as much of *devc as possible */
- devc->open_sema = MUTEX;
- devc->io_sema = MUTEX;
- devc->mix_sema = MUTEX;
+ init_MUTEX(&devc->open_sema);
+ init_MUTEX(&devc->io_sema);
+ init_MUTEX(&devc->mix_sema);
devc->open_mode = 0;
devc->rport.lock = SPIN_LOCK_UNLOCKED;
- init_waitqueue(&devc->rport.queue);
+ init_waitqueue_head(&devc->rport.queue);
devc->rport.swstate = SW_OFF;
devc->rport.hwstate = HW_STOPPED;
devc->rport.flags = 0;
devc->rport.swbuf = NULL;
devc->wport.lock = SPIN_LOCK_UNLOCKED;
- init_waitqueue(&devc->wport.queue);
+ init_waitqueue_head(&devc->wport.queue);
devc->wport.swstate = SW_OFF;
devc->wport.hwstate = HW_STOPPED;
devc->wport.flags = 0;
@@ -3468,8 +3467,9 @@
DBGXV("\n");
DBGXV("sound::vwsnd::init_module()\n");
- if(!probe_vwsnd(&the_hw_config))
+ if (!probe_vwsnd(&the_hw_config))
return -ENODEV;
+
err = attach_vwsnd(&the_hw_config);
if (err < 0)
return err;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-14 12:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-14 12:58 [PATCH] visws: sound update (11/13) Andrey Panin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.