* cs46xx compile failure in 2.4.21
@ 2003-06-13 22:34 Carlos Valdivia Yagüe
0 siblings, 0 replies; only message in thread
From: Carlos Valdivia Yagüe @ 2003-06-13 22:34 UTC (permalink / raw)
To: linux-kernel
Hi,
cs46xx.c doesn't compile in 2.4.21 with gcc 3.3:
cs46xx.c:950: error: long, short, signed or unsigned used invalidly for `off'
cs46xx.c:951: error: long, short, signed or unsigned used invalidly for `val'
cs46xx.c: In function `cs_ac97_init':
This patch fixes compilation issue and works fine for my soundcard:
--- linux-2.4.21/drivers/sound/cs46xx.c.orig 2003-06-13 23:29:53.000000000 +0200
+++ linux-2.4.21/drivers/sound/cs46xx.c 2003-06-13 23:37:49.000000000 +0200
@@ -947,8 +947,8 @@
struct InitStruct
{
- u32 long off;
- u32 long val;
+ u32 off;
+ u32 val;
} InitArray[] = { {0x00000040, 0x3fc0000f},
{0x0000004c, 0x04800000},
Best regards.
--
Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-06-13 22:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-13 22:34 cs46xx compile failure in 2.4.21 Carlos Valdivia Yagüe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox