From: Steve L. <slo...@us...> - 2001-11-08 18:03:20
|
Update of /cvsroot/linux-mips/linux/drivers/sound In directory usw-pr-cvs1:/tmp/cvs-serv16661/drivers/sound Modified Files: au1000.c Log Message: Au1000 sound updates. Index: au1000.c =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/sound/au1000.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- au1000.c 2001/10/22 22:39:58 1.5 +++ au1000.c 2001/11/08 18:03:18 1.6 @@ -92,7 +92,7 @@ #define AC97_EXT_DACS (AC97_EXTID_SDAC | AC97_EXTID_CDAC | AC97_EXTID_LDAC) /* Boot options */ -static int vra = 0; // 0 = no VRA, 1 = use VRA if codec supports it +static int vra = 0; // 0 = no VRA, 1 = use VRA if codec supports it MODULE_PARM(vra, "i"); MODULE_PARM_DESC(vra, "if 1 use VRA if codec supports it"); @@ -100,47 +100,46 @@ /* --------------------------------------------------------------------- */ [...1816 lines suppressed...] { info("st...@mv..., built " __TIME__ " on " __DATE__); @@ -2113,7 +2122,7 @@ static int __init au1000_setup(char *options) { - char* this_opt; + char *this_opt; if (!options || !*options) return 0; @@ -2124,7 +2133,7 @@ vra = 1; } } - + return 1; } |