[alsa-cvslog] CVS: alsa-tools/sscape_ctl sscape_ctl.c,1.3,1.4

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-tools/sscape_ctl
In directory sc8-pr-cvs1:/tmp/cvs-serv26976

Modified Files:
sscape_ctl.c 
Log Message:
Fixed warning

Index: sscape_ctl.c
===
RCS file: /cvsroot/alsa/alsa-tools/sscape_ctl/sscape_ctl.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sscape_ctl.c25 Sep 2003 19:52:14 -  1.3
+++ sscape_ctl.c12 Oct 2003 08:45:32 -  1.4
@@ -14,7 +14,7 @@
 
 const char default_dir[] = /sndscape;
 const char scope[] = scope.cod;
-char _microcode[65536];
+unsigned char _microcode[SSCAPE_MICROCODE_SIZE];
 
 static void
 show_usage(void)
@@ -205,7 +205,7 @@
 struct sscape_bootblock  boot;
 struct sscape_microcode  microcode;
 
-microcode.code = _microcode;
+microcode.code = _microcode;
 if ((len = get_directory(directory, filename, sizeof(filename))) == 0)
 {
   fprintf(stderr, Invalid directory - pathname too long\n);



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-kernel/isa sscape.c,1.5,1.6

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-kernel/isa
In directory sc8-pr-cvs1:/tmp/cvs-serv26852/isa

Modified Files:
sscape.c 
Log Message:
Chris Rankin [EMAIL PROTECTED] - use #define rather than value for the microcode size

Index: sscape.c
===
RCS file: /cvsroot/alsa/alsa-kernel/isa/sscape.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sscape.c25 Sep 2003 18:55:43 -  1.5
+++ sscape.c12 Oct 2003 08:44:58 -  1.6
@@ -616,10 +616,10 @@
 */
if (get_user(code, mc-code))
return -EFAULT;
-   if ((err = verify_area(VERIFY_READ, code, 65536)) != 0)
+   if ((err = verify_area(VERIFY_READ, code, SSCAPE_MICROCODE_SIZE)) != 0)
return err;
 
-   if ((ret = upload_dma_data(sscape, code, 65536)) == 0) {
+   if ((ret = upload_dma_data(sscape, code, SSCAPE_MICROCODE_SIZE)) == 0) {
snd_printk(KERN_INFO sscape: MIDI firmware loaded\n);
}
 



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-kernel/include sscape_ioctl.h,1.2,1.3

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-kernel/include
In directory sc8-pr-cvs1:/tmp/cvs-serv26852/include

Modified Files:
sscape_ioctl.h 
Log Message:
Chris Rankin [EMAIL PROTECTED] - use #define rather than value for the microcode size

Index: sscape_ioctl.h
===
RCS file: /cvsroot/alsa/alsa-kernel/include/sscape_ioctl.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sscape_ioctl.h  25 Sep 2003 18:55:43 -  1.2
+++ sscape_ioctl.h  12 Oct 2003 08:44:58 -  1.3
@@ -8,9 +8,11 @@
   unsigned version;
 };
 
+#define SSCAPE_MICROCODE_SIZE  65536
+
 struct sscape_microcode
 {
-  unsigned char *code; /* 65536 chars */
+  unsigned char *code;
 };
 
 #define SND_SSCAPE_LOAD_BOOTB  _IOWR('P', 100, struct sscape_bootblock)



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-driver configure.in,1.194,1.195

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-driver
In directory sc8-pr-cvs1:/tmp/cvs-serv7861

Modified Files:
configure.in 
Log Message:
PDE() detection fix

Index: configure.in
===
RCS file: /cvsroot/alsa/alsa-driver/configure.in,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- configure.in10 Oct 2003 14:47:38 -  1.194
+++ configure.in12 Oct 2003 16:39:44 -  1.195
@@ -1027,6 +1027,7 @@
 #define __KERNEL__
 #include $CONFIG_SND_KERNELDIR/include/linux/config.h
 #include $CONFIG_SND_KERNELDIR/include/linux/fs.h
+#include $CONFIG_SND_KERNELDIR/include/linux/proc_fs.h
 ],[
PDE(NULL);
 ],



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-driver/include adriver.h,1.59,1.60

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-driver/include
In directory sc8-pr-cvs1:/tmp/cvs-serv7861/include

Modified Files:
adriver.h 
Log Message:
PDE() detection fix

Index: adriver.h
===
RCS file: /cvsroot/alsa/alsa-driver/include/adriver.h,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- adriver.h   6 Oct 2003 10:09:33 -   1.59
+++ adriver.h   12 Oct 2003 16:39:45 -  1.60
@@ -129,6 +129,7 @@
 #endif
 #ifndef CONFIG_HAVE_PDE
 #include linux/fs.h
+#include linux/proc_fs.h
 static inline struct proc_dir_entry *PDE(const struct inode *inode)
 {
return (struct proc_dir_entry *) inode-u.generic_ip;



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-driver configure.in,1.195,1.196

2003-10-12 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-driver
In directory sc8-pr-cvs1:/tmp/cvs-serv8175

Modified Files:
configure.in 
Log Message:
0.9.7c

Index: configure.in
===
RCS file: /cvsroot/alsa/alsa-driver/configure.in,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- configure.in12 Oct 2003 16:39:44 -  1.195
+++ configure.in12 Oct 2003 16:41:43 -  1.196
@@ -4,7 +4,7 @@
 
 AC_INIT(acore/sound.patch)
 AC_PREFIX_DEFAULT(/usr)
-CONFIG_SND_VERSION=0.9.7b
+CONFIG_SND_VERSION=0.9.7c
 
 dnl Checks for programs.
 AC_PROG_CC



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog