Update of /cvsroot/alsa/alsa-kernel/isa/cs423x
In directory sc8-pr-cvs1:/tmp/cvs-serv32368/isa/cs423x

Modified Files:
        cs4231.c cs4236.c pc98.c 
Log Message:
- fixed the boot parameters with long ints for non-intel architectures.
- added get_option_long() for parsing the parameter.





Index: cs4231.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/cs423x/cs4231.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- cs4231.c    21 Oct 2002 18:28:21 -0000      1.9
+++ cs4231.c    14 Oct 2003 13:08:15 -0000      1.10
@@ -194,8 +194,8 @@
               get_option(&str,&index[nr_dev]) == 2 &&
               get_id(&str,&id[nr_dev]) == 2 &&
               get_option(&str,&pnp) == 2 &&
-              get_option(&str,(int *)&port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&mpu_port[nr_dev]) == 2 &&
+              get_option_long(&str,&port[nr_dev]) == 2 &&
+              get_option_long(&str,&mpu_port[nr_dev]) == 2 &&
               get_option(&str,&irq[nr_dev]) == 2 &&
               get_option(&str,&mpu_irq[nr_dev]) == 2 &&
               get_option(&str,&dma1[nr_dev]) == 2 &&

Index: cs4236.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/cs423x/cs4236.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- cs4236.c    23 Sep 2003 14:17:21 -0000      1.36
+++ cs4236.c    14 Oct 2003 13:08:15 -0000      1.37
@@ -638,11 +638,11 @@
               get_option(&str,&index[nr_dev]) == 2 &&
               get_id(&str,&id[nr_dev]) == 2 &&
               get_option(&str,&pnp) == 2 &&
-              get_option(&str,(int *)&port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&cport[nr_dev]) == 2 &&
-              get_option(&str,(int *)&mpu_port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&fm_port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&sb_port[nr_dev]) == 2 &&
+              get_option_long(&str,&port[nr_dev]) == 2 &&
+              get_option_long(&str,&cport[nr_dev]) == 2 &&
+              get_option_long(&str,&mpu_port[nr_dev]) == 2 &&
+              get_option_long(&str,&fm_port[nr_dev]) == 2 &&
+              get_option_long(&str,&sb_port[nr_dev]) == 2 &&
               get_option(&str,&irq[nr_dev]) == 2 &&
               get_option(&str,&mpu_irq[nr_dev]) == 2 &&
               get_option(&str,&dma1[nr_dev]) == 2 &&

Index: pc98.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/cs423x/pc98.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pc98.c      23 Sep 2003 14:17:21 -0000      1.5
+++ pc98.c      14 Oct 2003 13:08:15 -0000      1.6
@@ -455,9 +455,9 @@
        (void)(get_option(&str,&enable[nr_dev]) == 2 &&
               get_option(&str,&index[nr_dev]) == 2 &&
               get_id(&str,&id[nr_dev]) == 2 &&
-              get_option(&str,(int *)&port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&mpu_port[nr_dev]) == 2 &&
-              get_option(&str,(int *)&fm_port[nr_dev]) == 2 &&
+              get_option_long(&str,&port[nr_dev]) == 2 &&
+              get_option_long(&str,&mpu_port[nr_dev]) == 2 &&
+              get_option_long(&str,&fm_port[nr_dev]) == 2 &&
               get_option(&str,&irq[nr_dev]) == 2 &&
               get_option(&str,&mpu_irq[nr_dev]) == 2 &&
               get_option(&str,&dma1[nr_dev]) == 2 &&



-------------------------------------------------------
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

Reply via email to