All of lore.kernel.org
 help / color / mirror / Atom feed
From: Cemil Degirmenci <cd@deltaweb.de>
To: linux-sound@vger.kernel.org
Subject: Problems in cs66xx.c with undefined int long and gcc 3.3.1 Kernel
Date: Thu, 31 Jul 2003 18:37:18 +0000	[thread overview]
Message-ID: <marc-linux-sound-105967664909490@msgid-missing> (raw)

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




                 reply	other threads:[~2003-07-31 18:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-linux-sound-105967664909490@msgid-missing \
    --to=cd@deltaweb.de \
    --cc=linux-sound@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.