* Problems in cs66xx.c with undefined int long and gcc 3.3.1 Kernel
@ 2003-07-31 18:37 Cemil Degirmenci
0 siblings, 0 replies; only message in thread
From: Cemil Degirmenci @ 2003-07-31 18:37 UTC (permalink / raw)
To: linux-sound
Hello,
Hello,
this is my first bugreport Ever for the Linux-Kernel so don't blame me :)
There is a problem compiling the cs46xx.c with gcc 3.3.1 in 2.4.20 and 2.4.21
int long is undefined, so the compiler crashed. A Workarround is here in this patch.
--- cs46-oldxx.c 2003-07-31 20:28:35.000000000 +0200
+++ cs46xx.c 2003-07-28 00:21:11.000000000 +0200
@@ -947,8 +947,8 @@
struct InitStruct
{
- u32 long off;
- u32 long val;
+ u32 off;
+ u32 val;
} InitArray[] = { {0x00000040, 0x3fc0000f},
{0x0000004c, 0x04800000},
--
Mit freundlichen Gruessen,
Cemil Degirmenci
cd@deltaweb.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-07-31 18:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-31 18:37 Problems in cs66xx.c with undefined int long and gcc 3.3.1 Kernel Cemil Degirmenci
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.