[PATCH] mad16 C924 detection

2001-03-05 Thread Pavel Rabel
es it more clear what's going on. There are many places in the driver with two different paths for C924, only one is ever used. Pavel Rabel --- drivers/sound/mad16.c.old Wed Nov 15 20:18:57 2000 +++ drivers/sound/mad16.c Thu Nov 16 23:07:44 2000 @@ -462,72 +462,80 @@

[PATCH] ide config order

2001-01-28 Thread Pavel Rabel
Please reorder config to group DMA options together. In 2.4.0 Pavel Rabel --- drivers/ide/Config.in.old Tue Nov 28 22:22:49 2000 +++ drivers/ide/Config.in Tue Nov 28 22:24:19 2000 @@ -42,8 +42,8 @@ bool ' Generic PCI IDE chipset support' CONFIG_BLK_DEV_IDEPCI

[PATCH] pritk.c oneliner

2001-01-08 Thread Pavel Rabel
error is initialised twice Pavel Rabel --- kernel/printk.c.old Mon Jan 8 19:16:12 2001 +++ kernel/printk.c Mon Jan 8 19:17:54 2001 @@ -125,9 +125,8 @@ unsigned long i, j, limit, count; int do_clear = 0; char c; - int error = -EPERM; + int error = 0

[PATCH] mdacon.c cleanup in 2.2.19

2000-12-17 Thread Pavel Rabel
Patch is removing few ifdefs. Both MODULE_PARM and __initfunc are removed by preprocessor if compiled as module. Pavel Rabel --- drivers/video/mdacon.c.old Sun Dec 17 18:53:18 2000 +++ drivers/video/mdacon.c Sun Dec 17 18:54:55 2000 @@ -75,14 +75,10 @@ static struct vc_data

[PATCH] sim710.c compiler warning

2000-12-17 Thread Pavel Rabel
Patch fixes compiler warning for 2.4.0-test12 sim710.c: In function `sim710_detect': sim710.c:1452: warning: comparison between pointer and integer Pavel Rabel --- drivers/scsi/sim710.c.old Tue Dec 5 15:34:00 2000 +++ drivers/scsi/sim710.c Tue Dec 5 15:37:18 2000 @@ -1449,7 +1

[PATCH] timer.h obsolete comments

2000-12-12 Thread Pavel Rabel
Hi Linus, Are the old static timers gone completely? Some comments are either obsolete or out of place. Pavel Rabel --- include/linux/timer.h.old Tue Dec 12 22:07:35 2000 +++ include/linux/timer.h Tue Dec 12 22:09:28 2000 @@ -5,13 +5,9 @@ #include /* - * This is completely

Re: [PATCH] mdacon.c cleanup

2000-12-12 Thread Pavel Rabel
On Tue, 12 Dec 2000, David Woodhouse wrote: > [EMAIL PROTECTED] said: > > Both MODULE_PARM and __init are removed by precompiler when not > > compiler as module, so no need for ifdefs. 2.4.0-test12pre8 > > -#ifdef MODULE_PARM > MODULE_PARM(mda_first_vc, "1-255i"); > MODULE_PARM(mda_last_vc,

[PATCH] mdacon.c cleanup

2000-12-10 Thread Pavel Rabel
Both MODULE_PARM and __init are removed by precompiler when not compiler as module, so no need for ifdefs. 2.4.0-test12pre8 Pavel Rabel --- mdacon.c.oldSun Dec 10 21:00:20 2000 +++ mdacon.cSun Dec 10 21:04:32 2000 @@ -77,10 +77,8 @@ static struct vc_data *mda_display_fg = NULL

[PATCH] sim710.c compiler warning

2000-12-05 Thread Pavel Rabel
sim710.c: In function `sim710_detect': sim710.c:1452: warning: comparison between pointer and integer --- drivers/scsi/sim710.c.old Tue Dec 5 15:34:00 2000 +++ drivers/scsi/sim710.c Tue Dec 5 15:37:18 2000 @@ -1449,7 +1449,7 @@ for(indx = 0; indx < no_of_boards; indx++) {

[PATCH] ide config order

2000-11-28 Thread Pavel Rabel
2.4.0test12-pre2 Please reorder config to group DMA options together. Pavel Rabel --- drivers/ide/Config.in.old Tue Nov 28 22:22:49 2000 +++ drivers/ide/Config.in Tue Nov 28 22:24:19 2000 @@ -42,8 +42,8 @@ bool ' Generic PCI IDE chipset support' CONFIG_BLK_

[PATCH] mad16 old OSS config

2000-11-28 Thread Pavel Rabel
Following patch is removing old config stuff which probably survived from OSS. Pavel Rabel --- linux/drivers/sound/mad16.c.old Tue Nov 28 20:34:52 2000 +++ linux/drivers/sound/mad16.c Tue Nov 28 20:47:05 2000 @@ -20,38 +20,6 @@ * issues of the card, using the OTI-605 chip, have an MPU

[PATCH] mad16 C924 detection

2000-11-24 Thread Pavel Rabel
patch makes it more clear what's going on. There are many places in the driver with two different paths for C924, only one is ever used. Pavel Rabel --- drivers/sound/mad16.c.old Wed Nov 15 20:18:57 2000 +++ drivers/sound/mad16.c Thu Nov 16 23:07:44 2000 @@ -462,72 +462,80 @@

[PATCH] mad16 MPU probing

2000-11-23 Thread Pavel Rabel
is kind of cleanup patches? Pavel Rabel --- drivers/sound/mad16.c.old Wed Sep 27 20:53:56 2000 +++ drivers/sound/mad16.c Thu Nov 23 11:00:47 2000 @@ -718,13 +718,7 @@ static int __init probe_mad16_mpu(struct address_info *hw_config) { static int mpu_attached = 0; -

Re: "No IRQ known for interrupt pin A..." error message

2000-11-19 Thread Pavel Rabel
> During boot, I get the message: > > PCI: No IRQ known for interrupt pin A of device 00:00.1. Please try > using pci=biosirq. It is related to VGA card (at least on my system). Enabling 'Assign IRQ for VGA' in BIOS causes the message to disapear. Pavel - To unsubscribe from this list: send t

[PATCH] MAD16 madness

2000-11-16 Thread Pavel Rabel
Hi, When I saw the mad16.c driver, I just couldn't resist. There were 7 (seven) levels of nested ifs. It looks like more cleaning can be done, but this patch is just reorganising the code without any functionality change and makes the questionable logic more readable. Patch against latest 2.4t

[patch] CONFIG_SOUND_MAD16 help

2000-11-14 Thread Pavel Rabel
The mentioned file drivers/sound/README.C931 doesn't exist. Is the README file somewhere else? Pavel Rabel --- Configure.help.old Tue Nov 14 16:49:34 2000 +++ Configure.help Tue Nov 14 16:52:08 2000 @@ -14045,8 +14045,7 @@ Support for OPTi MAD16 and/or Mozart based

[patch] matroxfb.txt

2000-11-10 Thread Pavel Rabel
Typo in Documentation/fb/matroxfb.txt Pavel Rabel --- matroxfb.txt.oldFri Nov 10 20:39:39 2000 +++ matroxfb.txtFri Nov 10 20:40:11 2000 @@ -253,7 +253,7 @@ `vesa'. If you know capabilities of your monitor, you can specify some (or all) of -`pixclk', `fh

Re: [patch] NE2000

2000-10-30 Thread pavel rabel
er for PCI card. Pavel Rabel - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/