mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [Patch - 2.5] OSS/Emu10k1
@ 2003-01-05 15:46 Paul Rolland
  0 siblings, 0 replies; only message in thread
From: Paul Rolland @ 2003-01-05 15:46 UTC (permalink / raw)
  To: 'Linux Kernel Mailing List'

Hello,

Here are two patches to avoid compilation warnings for Emu10K1 OSS.

Mainly related to set_bit and al. now requiring a void * parameter.
This patch is just doing type cast.

3 [16:45] rol@donald:/usr/src/linux/sound/oss/emu10k1> diff -urN
efxmgr.c.orig efxmgr.c
--- efxmgr.c.orig       2003-01-05 16:42:37.000000000 +0100
+++ efxmgr.c    2003-01-05 16:41:46.000000000 +0100
@@ -64,7 +64,7 @@
   match:
        for (i = 0; i < NUM_GPRS; i++)
         if (mgr->gpr[i].type == GPR_TYPE_CONTROL &&
-            test_bit(i, gpr_used) &&
+            test_bit(i, (void *)gpr_used) &&
             !strcmp(mgr->gpr[i].name, gpr_name))
                return i;
 

and

7 [16:46] rol@donald:/usr/src/linux/sound/oss/emu10k1> diff -urN
efxmgr.h.orig efxmgr.h
--- efxmgr.h.orig       2003-01-05 16:38:25.000000000 +0100
+++ efxmgr.h    2003-01-05 16:39:53.000000000 +0100
@@ -196,9 +196,9 @@
        patch->code_size = pc * 2 - patch->code_start;      \
 } while(0)
 
-#define CONNECT(input, output) set_bit(input, &rpatch->route[(output) -
OUTPUT_BASE]);
+#define CONNECT(input, output) set_bit(input, (void
*)(&rpatch->route[(output) - OUTPUT_BASE]));
 
-#define CONNECT_V(input, output) set_bit(input,
&rpatch->route_v[(output) - OUTPUT_BASE]);
+#define CONNECT_V(input, output) set_bit(input, (void
*)(&rpatch->route_v[(output) - OUTPUT_BASE]));
 
 #define OUTPUT_PATCH_START(patch, nm, ln, i)    \
 do {                           \
@@ -221,7 +221,7 @@
        mgr->gpr[(g) - GPR_BASE].type = GPR_TYPE_IO;    \
        mgr->gpr[(g) - GPR_BASE].usage++;        \
        mgr->gpr[(g) - GPR_BASE].line = ln;      \
-       set_bit((g) - GPR_BASE, patch->gpr_used);       \
+       set_bit((g) - GPR_BASE, (void *)(patch->gpr_used));     \
 } while(0)
 
 #define GET_INPUT_GPR(patch, g, ln)            \
@@ -229,15 +229,15 @@
        mgr->gpr[(g) - GPR_BASE].type = GPR_TYPE_IO;    \
        mgr->gpr[(g) - GPR_BASE].usage++;        \
        mgr->gpr[(g) - GPR_BASE].line = ln;      \
-       set_bit((g) - GPR_BASE, patch->gpr_used);       \
-       set_bit((g) - GPR_BASE, patch->gpr_input);      \
+       set_bit((g) - GPR_BASE, (void *)(patch->gpr_used));     \
+       set_bit((g) - GPR_BASE, (void *)(patch->gpr_input));    \
 } while(0)
 
 #define GET_DYNAMIC_GPR(patch, g)               \
 do {                            \
        mgr->gpr[(g) - GPR_BASE].type = GPR_TYPE_DYNAMIC;       \
        mgr->gpr[(g) - GPR_BASE].usage++;               \
-       set_bit((g) - GPR_BASE, patch->gpr_used);               \
+       set_bit((g) - GPR_BASE, (void *)(patch->gpr_used));     \
 } while(0)
 
 #define GET_CONTROL_GPR(patch, g, nm, a, b)            \
@@ -248,7 +248,7 @@
        mgr->gpr[(g) - GPR_BASE].min = a;               \
        mgr->gpr[(g) - GPR_BASE].max = b;               \
        sblive_writeptr(card, g, 0, b);          \
-       set_bit((g) - GPR_BASE, patch->gpr_used);        \
+       set_bit((g) - GPR_BASE, (void *)(patch->gpr_used));     \
 } while(0)
 
 #endif /* _EFXMGR_H */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-01-05 15:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-05 15:46 [Patch - 2.5] OSS/Emu10k1 Paul Rolland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®