Re: About Linux Device Drivers

2005-08-05 Thread Nick Sillik
ux.org/lkml/ The second edition of Linux Device Drivers is specific to 2.4.x (and possibly 2.2.x) kernels. The third edition will work with the 2.6 kernel. Luckily it is also released under Creative Commons. Take a look at the PDFs here: http://lwn.net/Kernel/LDD3/ Enjoy! Nick Sillik [EMAIL PROTECTED] -

Changes to kernel.org website

2005-08-08 Thread Nick Sillik
tain bandwidth. The confusion is as follows: I have a good cable connection (~5mb/s) but I wouldn't consider this "very fast" because I know of much faster connections. Would this scare me away from downloading Linux or even using it at all? Probably. Just thought it's best to

drivers/char/speakup/synthlist.h fix -Wundef errors

2005-07-27 Thread Nick Sillik
This patch should fix a slew of -Wundef errors in the synthlist.h file used by the speakup driver. Nick Sillik [EMAIL PROTECTED] diff -urN a/drivers/char/speakup/synthlist.h b/drivers/char/speakup/synthlist.h --- a/drivers/char/speakup/synthlist.h 2005-07-27 16:10:04.0 -0400 +++ b

[PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error

2005-07-27 Thread Nick Sillik
Sorry for the resend and previously bad subject line. This fixes a single -Wundef error in the file net/ipv4/netfilter/ip_conntrack_core.c , Please Apply Nick Sillik [EMAIL PROTECTED] diff -urN a/net/ipv4/netfilter/ip_conntrack_core.c b/net/ipv4/netfilter/ip_conntrack_core.c --- a/net/ipv4

Re: drivers/char/speakup/synthlist.h fix -Wundef errors

2005-07-27 Thread Nick Sillik
Nick Sillik wrote: This patch should fix a slew of -Wundef errors in the synthlist.h file used by the speakup driver. Nick Sillik [EMAIL PROTECTED] Or maybe we could just eliminate the CFG_TEST from the file all together This patch follows that avenue. diff -urN a/drivers/char/speakup

Re: [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error

2005-07-27 Thread Nick Sillik
Apologies Signed-off-by: Nick Sillik <[EMAIL PROTECTED]> David S. Miller wrote: From: Nick Sillik <[EMAIL PROTECTED]> Date: Wed, 27 Jul 2005 16:49:59 -0400 Sorry for the resend and previously bad subject line. This fixes a single -Wundef error in the file net/ip

[PATCH 2.6.13-rc3-mm2] fs/reiser4/plugin/node/node40.h fix warning with -Wundef

2005-07-27 Thread Nick Sillik
Fixes another -Wundef warning in ReiserFS code. Nick Sillik [EMAIL PROTECTED] Signed-off-by: Nick Sillik <[EMAIL PROTECTED]> diff -urN a/fs/reiser4/plugin/node/node40.h b/fs/reiser4/plugin/node/node40.h --- a/fs/reiser4/plugin/node/node40.h 2005-07-27 18:14:04.0 -0400 ++

net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error

2005-07-27 Thread Nick Sillik
This fixes a single -Wundef error in the file net/ipv4/netfilter/ip_conntrack_core.c , Please Apply Nick Sillik [EMAIL PROTECTED] diff -urN a/net/ipv4/netfilter/ip_conntrack_core.c b/net/ipv4/netfilter/ip_conntrack_core.c --- a/net/ipv4/netfilter/ip_conntrack_core.c2005-07-27 16:40

Re: 2.6.13-rc3-mm3

2005-07-28 Thread Nick Sillik
is not set? That's due to the code using `#if CONFIG_xx' instead of `#ifdef'. I previously posted a patch that got rid of one of these, find it attached again below. Signed-off-by: Nick Sillik <[EMAIL PROTECTED]> diff -urN a/fs/reiser4/plugin/node/node40.h b/fs/reiser4

[Patch 2.6.13-rc3-mm3]fs/reiser4/plugin/item/static_stat.c fix -Wundef errors in two files

2005-07-28 Thread Nick Sillik
This fixes -Wundef errors in: fs/reiser4/plugin/item/static_stat.c Nick Sillik [EMAIL PROTECTED] Signed-off-by: Nick Sillik <[EMAIL PROTECTED]> diff -urN a/fs/reiser4/plugin/item/static_stat.c b/fs/reiser4/plugin/item/static_stat.c --- a/fs/reiser4/plugin/item/static_stat.c 2005

Re: **SPAM** [PATCH 3/3] usb gadget driver for MQ11xx graphics chip

2005-08-03 Thread Nick Sillik
his happened on your end, you might want to re-send that one... Some email clients automatically filter messages containing "**SPAM**" in subject line. Nope, isn't on your end. I'm seeing them too. I thought my mailserver had gone off its rocker. I'm glad to know th

[-mm PATCH] drivers/char/speakup/synthlist.h - Fix warnings with -Wundef

2005-08-23 Thread Nick Sillik
: "CONFIG_SPEAKUP_DECEXT" is not defined drivers/char/speakup/synthlist.h:31:35: warning: "CONFIG_SPEAKUP_DECTLK" is not defined drivers/char/speakup/synthlist.h:34:33: warning: "CONFIG_SPEAKUP_DTLK" is not defined drivers/char/speakup/synthlist.h:37:34: warning:

[-mm PATCH] fix -Wundef warnings in reiser4 code

2005-08-23 Thread Nick Sillik
This patch fixes the following wundef errors in fs/reiser4/* . Signed-off-by: Nick Sillik <[EMAIL PROTECTED]> diff -urN linux-2.6.13-rc6-mm2/fs/reiser4/plugin/cryptcompress.c linux-2.6.13-rc6-mm2-patched/fs/reiser4/plugin/cryptcompress.c --- linux-2.6.13-rc6-mm2/fs/reiser4/plugin/cryptcomp

Re: [-mm PATCH] drivers/char/speakup/synthlist.h - Fix warnings with -Wundef

2005-08-23 Thread Nick Sillik
Alexey Dobriyan wrote: -#define CFG_TEST(name) (name) +#define CFG_TEST(name) defined(name) No. Just remove this obfuscating macro. Agreed, here is the fixed patch Signed-Off-By: Nick Sillik <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe l

Re: [-mm PATCH] drivers/char/speakup/synthlist.h - Fix warnings with -Wundef

2005-08-23 Thread Nick Sillik
Nick Sillik wrote: Alexey Dobriyan wrote: -#define CFG_TEST(name) (name) +#define CFG_TEST(name) defined(name) No. Just remove this obfuscating macro. Agreed, here is the fixed patch Signed-Off-By: Nick Sillik <[EMAIL PROTECTED]> No here it really is... (sorry) Signed-