Update of /cvsroot/alsa/alsa-kernel/isa
In directory sc8-pr-cvs1:/tmp/cvs-serv18372
Modified Files:
als100.c azt2320.c cmi8330.c dt019x.c es18xx.c
Log Message:
Art Haas <[EMAIL PROTECTED]>
Here are a set of patches for files in sound/isa that convert the files
to use C99 initializers. The patches are against the current BK.
Index: als100.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/als100.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- als100.c 21 Oct 2002 18:28:21 -0000 1.13
+++ als100.c 1 Mar 2003 19:04:28 -0000 1.14
@@ -112,9 +112,9 @@
#define ISAPNP_ALS100(_va, _vb, _vc, _device, _audio, _mpu401, _opl) \
{ \
ISAPNP_CARD_ID(_va, _vb, _vc, _device), \
- devs : { ISAPNP_DEVICE_ID('@', '@', '@', _audio), \
- ISAPNP_DEVICE_ID('@', 'X', '@', _mpu401), \
- ISAPNP_DEVICE_ID('@', 'H', '@', _opl) } \
+ .devs = { ISAPNP_DEVICE_ID('@', '@', '@', _audio), \
+ ISAPNP_DEVICE_ID('@', 'X', '@', _mpu401), \
+ ISAPNP_DEVICE_ID('@', 'H', '@', _opl) } \
}
static struct isapnp_card_id snd_als100_pnpids[] __devinitdata = {
Index: azt2320.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/azt2320.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- azt2320.c 21 Oct 2002 18:28:21 -0000 1.12
+++ azt2320.c 1 Mar 2003 19:04:28 -0000 1.13
@@ -125,8 +125,8 @@
#define ISAPNP_AZT2320(_va, _vb, _vc, _device, _audio, _mpu401) \
{ \
ISAPNP_CARD_ID(_va, _vb, _vc, _device), \
- devs : { ISAPNP_DEVICE_ID(_va, _vb, _vc, _audio), \
- ISAPNP_DEVICE_ID(_va, _vb, _vc, _mpu401), } \
+ .devs = { ISAPNP_DEVICE_ID(_va, _vb, _vc, _audio), \
+ ISAPNP_DEVICE_ID(_va, _vb, _vc, _mpu401), } \
}
static struct isapnp_card_id snd_azt2320_pnpids[] __devinitdata = {
Index: cmi8330.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/cmi8330.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- cmi8330.c 31 Jan 2003 15:19:43 -0000 1.16
+++ cmi8330.c 1 Mar 2003 19:04:28 -0000 1.17
@@ -182,8 +182,8 @@
#define ISAPNP_CMI8330(_va, _vb, _vc, _device, _audio1, _audio2) \
{ \
ISAPNP_CARD_ID(_va, _vb, _vc, _device), \
- devs : { ISAPNP_DEVICE_ID('@', '@', '@', _audio1), \
- ISAPNP_DEVICE_ID('@', 'X', '@', _audio2), } \
+ .devs = { ISAPNP_DEVICE_ID('@', '@', '@', _audio1), \
+ ISAPNP_DEVICE_ID('@', 'X', '@', _audio2), } \
}
static struct isapnp_card_id snd_cmi8330_pnpids[] __devinitdata =
Index: dt019x.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/dt019x.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dt019x.c 19 Feb 2003 09:33:44 -0000 1.5
+++ dt019x.c 1 Mar 2003 19:04:28 -0000 1.6
@@ -111,7 +111,7 @@
/* DT0196 / ALS-007 */
{
ISAPNP_CARD_ID('A','L','S',0x0007),
- devs: { ISAPNP_DEVICE_ID('@','@','@',0x0001),
+ .devs = { ISAPNP_DEVICE_ID('@','@','@',0x0001),
ISAPNP_DEVICE_ID('@','X','@',0x0001),
ISAPNP_DEVICE_ID('@','H','@',0x0001) }
},
Index: es18xx.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/es18xx.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- es18xx.c 31 Jan 2003 15:19:44 -0000 1.26
+++ es18xx.c 1 Mar 2003 19:04:28 -0000 1.27
@@ -1950,8 +1950,8 @@
#define ISAPNP_ES18XX(_va, _vb, _vc, _device, _audio, _control) \
{ \
ISAPNP_CARD_ID(_va, _vb, _vc, _device), \
- devs : { ISAPNP_DEVICE_ID(_va, _vb, _vc, _audio), \
- ISAPNP_DEVICE_ID(_va, _vb, _vc, _control) } \
+ .devs = { ISAPNP_DEVICE_ID(_va, _vb, _vc, _audio), \
+ ISAPNP_DEVICE_ID(_va, _vb, _vc, _control) } \
}
static struct isapnp_card_id snd_audiodrive_pnpids[] __devinitdata = {
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog