Re: [PATCH v2] VNIC: Adding support for Cavium ThunderX network controller

2014-11-12 Thread Andrey Panin
On 313, 11 09, 2014 at 09:14:05PM -0800, Robert Richter wrote: I apologize for possibly repeated mail, my mailsystem was misconfigured :( Some comments from quick look are below. > +static int nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) > +{ > + struct device *dev = &pd

Re: [PATCH] serial: add ADDI-DATA GmbH Communication cards in 8250_pci.c and pci_ids.h.

2007-11-28 Thread Andrey Panin
CI_ANY_ID, > + 0, > + 0, > + pbn_b0_1_115200 }, > + > + { PCI_VENDOR_ID_ADDIDATA, > + PCI_DEVICE_ID_ADDIDATA_APCI7500_3, > + PCI_ANY_ID, > + PCI_ANY_ID, > + 0, > + 0, > +

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-28 Thread Andrey Panin
On 295, 10 22, 2007 at 01:14:14 -0400, Chris Bergeron wrote: > Andrey Panin wrote: >> On 291, 10 18, 2007 at 01:00:06 -0400, Chris Bergeron wrote: >> So the card probably generates screaming interrupt... that's bad. >> I found some docs for IT887x chips, according to

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-26 Thread Andrey Panin
On 295, 10 22, 2007 at 12:18:08PM -0400, Lennart Sorensen wrote: > On Mon, Oct 22, 2007 at 07:33:23PM +0400, Andrey Panin wrote: > > So the card probably generates screaming interrupt... that's bad. > > I found some docs for IT887x chips, according to these docs IT887x >

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-22 Thread Andrey Panin
On 291, 10 18, 2007 at 01:00:06 -0400, Chris Bergeron wrote: > Andrey Panin wrote: >> On 290, 10 17, 2007 at 06:16:58 -0400, Chris Bergeron wrote: >> >>> Andrey Panin wrote: >>> >>>> Is it possible to connect two ports and run getty on one port

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-17 Thread Andrey Panin
On 290, 10 17, 2007 at 06:16:58 -0400, Chris Bergeron wrote: > Andrey Panin wrote: >> >> Is it possible to connect two ports and run getty on one port and minicom >> on >> another ? We should check that UARTs are really working. >> >> > I used t

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-16 Thread Andrey Panin
On 289, 10 16, 2007 at 03:03:34PM -0400, Chris Bergeron wrote: > Andrey Panin wrote: >> On 284, 10 11, 2007 at 01:02:12PM -0400, Chris Bergeron wrote: >> >>> Andrey Panin wrote: >>> >>>> On 278, 10 05, 2007 at 05:31:05PM -0400, Chris

Re: [HP ProLiant WatchDog driver] hpwdt HP WatchDog Patch

2007-10-15 Thread Andrey Panin
retval = -ENOMEM; > + goto error_out; > + } > + hpwdt_timer_reg = (p_mem_addr + 0x70); > + hpwdt_timer_con = (p_mem_addr + 0x72); > + > +#ifndef CONFIG_X86_64 > + /* > + * Let's try to map in the ROM for 32 bit Operating

Re: [PATCH try #4] Blackfin BF54x Input Keypad controller driver

2007-10-13 Thread Andrey Panin
l_free_list((u16 *)&per_rows[MAX_RC - pdata->rows]); > + peripheral_free_list((u16 *)&per_cols[MAX_RC - pdata->cols]); > + > + input_unregister_device(bf54x_kpad->input); > + > + kfree(bf54x_kpad->keycode); > + kfree(bf54x_kpad); > + pla

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-12 Thread Andrey Panin
On 284, 10 11, 2007 at 01:02:12PM -0400, Chris Bergeron wrote: > Andrey Panin wrote: >> On 278, 10 05, 2007 at 05:31:05PM -0400, Chris Bergeron wrote: >> >>> Hello all, >>> >>> I've just installed a multiport serial card released by an outfit c

Re: [PATCH try #2] Input/Joystick Driver: add support AD7142 joystick driver

2007-10-12 Thread Andrey Panin
kseriod\n"); > + return PTR_ERR(ad7142_task); > + } > + return 0; > +} > + > +static void ad7142_close(struct input_dev *dev) > +{ > + free_irq(CONFIG_BFIN_JOYSTICK_IRQ_PFX, ad7142_interrupt); > + kthread_stop(ad7142_task); > +} > + > +static int __init ad7142_init(void) > +{ > + int ret; > + > + ad7142_dev = input_allocate_device(); > + if (!ad7142_dev) > + return -ENOMEM; > + > + ad7142_dev->open = ad7142_open; > + ad7142_dev->close = ad7142_close; > + ad7142_dev->evbit[0] = BIT(EV_KEY); > + ad7142_dev->keybit[LONG(BTN_BASE)] = BIT(BTN_BASE) | BIT(BTN_BASE2) | > + BIT(BTN_BASE3) | BIT(BTN_BASE4); > + ad7142_dev->keybit[LONG(KEY_UP)] |= BIT(KEY_UP) | BIT(KEY_DOWN) | > + BIT(KEY_LEFT) | BIT(KEY_RIGHT); > + > + ad7142_dev->name = "ad7142 joystick"; > + ad7142_dev->phys = "ad7142/input0"; > + ad7142_dev->id.bustype = BUS_I2C; > + ad7142_dev->id.vendor = 0x0001; > + ad7142_dev->id.product = 0x0001; > + ad7142_dev->id.version = 0x0100; > + > + ret = input_register_device(ad7142_dev); > + if (ret) { > + printk(KERN_ERR "Failed to register AD7142 input device!\n"); > + goto fail_register; > + } > + > + ret = i2c_add_driver(&ad7142_driver); > + if (ret) { > + printk(KERN_ERR "Failed to add AD7142 I2C driver!\n"); > + goto fail_add; > + } > + return 0; > + > +fail_add: > + input_unregister_device(ad7142_dev); > +fail_register: > + input_free_device(ad7142_dev); > + return ret; > +} > + > +static void __exit ad7142_exit(void) > +{ > + i2c_del_driver(&ad7142_driver); > + input_unregister_device(ad7142_dev); > +} > + > +module_init(ad7142_init); > +module_exit(ad7142_exit); > -- > 1.5.3.4 > > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: Syba 8-Port Serial Card Unidentified By Kernel

2007-10-10 Thread Andrey Panin
figuration: latency=0 > > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: [PATCH] Added support for Wacom WACF007 and WACF008 to serial pnp driver.

2007-10-10 Thread Andrey Panin
}, > /* Compaq touchscreen */ > { "FPI2002", 0 }, > /* Fujitsu Stylistic touchscreens */ -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net - To unsubscribe from

Re: [PATCH] watchdog: add Nano 7240 driver

2007-10-07 Thread Andrey Panin
goto err_out_miscdev; > + } > + > + if (timeout < 1 || timeout > WATCHDOG_MAX_TIMEOUT) { > + timeout = WATCHDOG_TIMEOUT; > + printk(KERN_INFO PREFIX > +"timeout value must be 1<=x<=%d, using %d\n", > +WATCHDOG_MAX_TIMEOUT, timeout); > + } > + wdt_set_timeout(timeout); > + > + printk(KERN_INFO PREFIX > +"Watchdog driver for SBC7240 initialised (nowayout=%d)\n", > +nowayout); > + > + return 0; > + > + err_out_miscdev: > + misc_deregister(&wdt_miscdev); > + err_out_region1: > + release_region(ENABLE_SBC7240_PORT, 1); > + err_out: > + return rc; > +} > + > +module_init(sbc7240_wdt_init); > +module_exit(sbc7240_wdt_unload); > + > +MODULE_AUTHOR("Gilles Gigan"); > +MODULE_DESCRIPTION > +("Watchdog device driver for single board computer EPIC Nano 7240 from > iEi"); > +MODULE_LICENSE("GPL"); > +MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); > > -- > Free pop3 email with a spam filter. > http://www.bluebottle.com/tag/5 > > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: [PATCH] Patches for tiny 386 kernels, again. Linux kernel 2.6.22.7

2007-09-24 Thread Andrey Panin
atic inline struct dmi_device * dmi_find_device(int type, const char *name, struct dmi_device *from) { return NULL; } static inline int dmi_get_year(int year) { return 0; } static inline int dmi_name_in_vendors(char *s) { return 0; } #endif -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: ICH Intel PATA short cable override...

2007-09-04 Thread Andrey Panin
Daniel J Blueman > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Andre

Re: [2.6 patch] i386 visws: "extern inline" -> "static inline"

2007-08-28 Thread Andrey Panin
On 239, 08 27, 2007 at 11:28:19PM +0200, Adrian Bunk wrote: > "extern inline" will have different semantics with gcc 4.3. > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Looks good. Acked-by: Andrey Panin <[EMAIL PROTECTED]> > --- > > This

Re: [PATCH 4/7] I/OAT: Split PCI startup from DMA handling code

2007-07-20 Thread Andrey Panin
ot;); > +MODULE_LICENSE("GPL"); > +MODULE_AUTHOR("Intel Corporation"); > + > +static struct pci_device_id ioat_pci_tbl[] = { > + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) }, > + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) }, >

Re: [RFC] LZO1X de/compression support

2007-05-18 Thread Andrey Panin
ANY WARRANTY; without even the implied warranty of > + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + GNU General Public License for more details. > + > + You should have received a copy of the GNU General Public License > + along with the LZO library; see th

Re: [PATCH] Add support for ITE887x serial chipsets

2007-03-26 Thread Andrey Panin
rial_board pci_boards > }, > > /* > + * ITE > + */ > + [pbn_ite_887x] = { > +.flags = FL_BASE0 | FL_BASE_BARS, > +.base_baud = 115200, > + .uart_offset= 8, > +},

Re: [PATCH] drivers/media/video/videocodec.c: check kmalloc() return value.

2007-03-09 Thread Andrey Panin
codec_buf = (char *) kmalloc(size, GFP_KERNEL); > > + if (!videocodec_buf) > + return 0; > i = 0; > i += scnprintf(videocodec_buf + i, size - 1, > "lave or attached aster name type flagsmagic > "); Can you also remove

Re: [PATCH] Use more gcc extensions in the Linux headers

2007-03-09 Thread Andrey Panin
On 068, 03 09, 2007 at 07:53:08AM +, Christoph Hellwig wrote: > On Fri, Mar 09, 2007 at 09:50:56AM +0300, Andrey Panin wrote: > > On 068, 03 09, 2007 at 04:56:32PM +1100, Rusty Russell wrote: > > > __builtin_types_compatible_p() has been around since gcc 2.95, > > &g

Re: [PATCH] Use more gcc extensions in the Linux headers

2007-03-08 Thread Andrey Panin
unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Andrey Panin| L

Re: [PATCH] wistron button support for fujitsu-siemens Amilo D88x0

2007-02-07 Thread Andrey Panin
port) PNP0f13 - PS/2 port for PS/2-style mice PNP0700 - PC standard floppy disk controller PNP0400 - Standard LPT printer port PNP0501 - 16550A-compatible COM port -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: [PATCH] Add support for Korenix 16C950-based PCI cards

2006-12-20 Thread Andrey Panin
pbn_b0_4_921600 }, */ > + { PCI_VENDOR_ID_KORENIX, PCI_DEVICE_ID_KORENIX_JETCARDF1, > + 0x1208, 0x0004, 0, 0, > + pbn_b0_4_921600 }, > + > + /* >* Dell Remote Access Card 4 - [EMAIL PROTECTED] >*/ > { PCI_VENDO

Re: [PATCH 5/5] 2.6.13-rc5-mm1, driver for IBM Automatic Server Restart watchdog

2005-08-17 Thread Andrey Panin
On 229, 08 17, 2005 at 01:14:15PM -0700, Andrew Morton wrote: > Andrey Panin <[EMAIL PROTECTED]> wrote: > > > > > > This patch adds driver for IBM Automatic Server Restart watchdog hardware > > found in some IBM eServer xSeries machines. This driver is based on th

Re: [RFC][PATCH 2.6.13-rc6] add Dell Systems Management Base Driver (dcdbas) with sysfs support

2005-08-16 Thread Andrey Panin
What just got toasted if this driver > gets called? > > Can we have a check that the machine is (a) a Dell and (b) has a PIIX and (c) > the > PIIX has a functional SMI behind it, before we start doing outb() calls? What about dmi_check_system() ? -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

[PATCH 5/5] 2.6.13-rc5-mm1, driver for IBM Automatic Server Restart watchdog

2005-08-10 Thread Andrey Panin
This patch adds driver for IBM Automatic Server Restart watchdog hardware found in some IBM eServer xSeries machines. This driver is based on the ugly driver provided by IBM. Driver was tested on IBM eServer 226. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> drivers/char/watchdog/K

[PATCH 1/5] 2.6.13-rc5-mm1, remove old debugging code

2005-08-10 Thread Andrey Panin
DMI debugging code is unused for ages. This patch removes it. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> arch/i386/kernel/dmi_scan.c | 21 - 1 files changed, 21 deletions(-) diff -urdpNX /usr/share/dontdiff linux-2.6.13-rc5-mm1.vanilla/arch/i386/kernel/dmi_

[PATCH 3/5] 2.6.13-rc5-mm1, add onboard devices discovery

2005-08-10 Thread Andrey Panin
This patch adds onboard devices and IPMI BMC discovery into DMI scan code. Drivers can use dmi_find_device() function to search for devices by type and name. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> arch/i386/kernel/dmi_scan.c | 102 ++-- i

[PATCH 4/5] 2.6.13-rc5-mm1, IPMI, use dmi_find_device()

2005-08-10 Thread Andrey Panin
This patch replaces homebrew DMI scanning code in IPMI System Interface driver with dmi_find_device() call. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> drivers/char/ipmi/ipmi_si_intf.c | 105 ++- 1 files changed, 17 insertions(+), 88 deletions(-)

[PATCH 2/5] 2.6.13-rc5-mm1, make dmi_string() behave like strdup()

2005-08-10 Thread Andrey Panin
This patch changes dmi_string() function to allocate string copy by itself, to avoid code duplication in the next patch. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> arch/i386/kernel/dmi_scan.c | 39 +++ 1 files changed, 23 insertions(+), 16 del

[PATCH 0/5] 2.6.13-rc5-mm1, remove uneeded function

2005-08-10 Thread Andrey Panin
After elimination of central DMI blacklist dmi_scan_machine() function became a wrapper for dmi_iterate(). This patch moves some code around to kill unneeded function. Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> arch/i386/kernel/dmi_scan.c

Re: Synaptics probe problem on Acer Travelmate 3004WTMi

2005-07-18 Thread Andrey Panin
doff did it, thanks a lot! IIRC there was a patch which used DMI to automatically enable USB handoff on machines that need it. Was it rejected ? -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: IBM HDAPS things are looking up (was: Re: [Hdaps-devel] Re: [ltp] IBM HDAPS Someone interested? (Accelerometer))

2005-07-04 Thread Andrey Panin
x50/* accelerometer data fresh fresh */ > > #define REFRESH_ASYNC 0x00 /* do asynchronous refresh */ > #define REFRESH_SYNC 0x01/* do synchronous refresh */ > > /* > * where to find the various accelerometer data > * these map to the members of struct hdaps_accel_data > */ > #define HDAPS_PORT_STATE 0x1611 > #define HDAPS_PORT_XACCEL 0x1612 > #define HDAPS_PORT_YACCEL 0x1614 > #define HDAPS_PORT_TEMP 0x1616 > #define HDAPS_PORT_XVAR 0x1617 > #define HDAPS_PORT_YVAR 0x1619 > #define HDAPS_PORT_TEMP2 0x161b > #define HDAPS_PORT_UNKNOWN0x161c > #define HDAPS_PORT_KMACCT 0x161d > > #endif /* __IBM_HDAPS_H__ */ > --- Makefile.org 2005-07-04 07:58:53.0 +0200 > +++ Makefile 2005-07-04 07:57:50.0 +0200 > @@ -26,3 +26,7 @@ > install -d $(KMISC) > install -m 644 -c $(addsuffix .ko,$(list-m)) $(KMISC) > /sbin/depmod -a > + > +uninstall: > + rm -f $(KMISC)/$(addsuffix .ko,$(list-m)) > + /sbin/depmod -a -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

Re: [CFT:PATCH] Serial + Serial&Parallel PCI card cleanup

2005-07-04 Thread Andrey Panin
uspend_ports(priv); > > - for (i = 0; i < priv->nr; i++) > - serial8250_suspend_port(priv->line[i]); > - } > pci_save_state(dev); > pci_set_power_state(dev, pci_choose_state(dev, state)); > return 0; > @@ -1807,21

Re: [2.6 patch] i386: cleanup boot_cpu_logical_apicid variables

2005-04-19 Thread Andrey Panin
). > > This patch therefore removes the one in mpparse.c . > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Looks good. For the visws part: Signed-off-by: Andrey Panin <[EMAIL PROTECTED]> > --- > > arch/i386/kernel/mpparse.c |2 -- > arch/i386/m

Re: 2.6.12-rc2-mm1

2005-04-05 Thread Andrey Panin
On 095, 04 05, 2005 at 12:05:24AM -0700, Andrew Morton wrote: what useful this part of the patch is supposed to do ? Looks like the result of whitespace damage. --- linux-2.6.12-rc2/drivers/acpi/sleep/main.c 2005-03-02 01:09:19.0 -0800 +++ 25/drivers/acpi/sleep/main.c2005-04-04

Re: PROBLEM: v2.4.29 won't compile with PCI support disabled

2005-04-04 Thread Andrey Panin
other errors. > > Presumably this is because of other CONFIG options which are still > enabled but don't work w/o CONFIG_PCI. So please post your .config. > d> Both 2.4 and 2.6 kernels with CONFIG_PCI=n work Ok(*) on my 486. Disable CONFIG_PARPORT_SERIAL in your config. -- And

Re: [rfc/rft] Fujitsu B-Series Lifebook PS/2 TouchScreen driver

2005-03-22 Thread Andrey Panin
.. > > > > Ok, I have some patches to lifebook that I would like to included (if > they work): > > 1. lifebook-dmi-x86-only - do not compile in DMI detection on anything >but x86. On !x86 machines DMI functions will be optimized away and so you'll save only few

Re: Need break driver<-->pci-device automatic association

2005-03-21 Thread Andrey Panin
On 080, 03 21, 2005 at 08:22:28AM +, Russell King wrote: > On Mon, Mar 21, 2005 at 11:16:38AM +0300, Andrey Panin wrote: > > On 078, 03 19, 2005 at 08:33:14PM +0200, Jacques Goldberg wrote: > > >That's really what is needed (mainline). > > >I attach the

Re: Need break driver<-->pci-device automatic association

2005-03-21 Thread Andrey Panin
ing such a list, whose > objects would be skipped by the serial driver. >Sorry to repeat myself, but avoiding the need for the users to > recompile a kernel should be the first worry when implementing a solution. It's not a reason to fill kernel code with ugly kludges :) -- A

Re: [PATCH] ES7000 Legacy Mappings Update

2005-03-14 Thread Andrey Panin
+ /* > > + * Check to see if this is a x86_64 ES7000 machine. > > + */ > > + if (!(boot_cpu_data.x86 <= 15 && boot_cpu_data.x86_model <= 2)) > > + es7000_plat = 2; > > + else > >

Re: Patch to enable the USB handoff on Dell 650

2005-03-10 Thread Andrey Panin
On 063, 03 04, 2005 at 12:17:40 -0800, Pete Zaitcev wrote: > On Wed, 2 Feb 2005 10:18:47 +0300 Andrey Panin <[EMAIL PROTECTED]> wrote: > > > > +++ linux-2.6.11-rc2-lem/arch/i386/kernel/dmi_scan.c 2005-01-31 > > > 20:42:16.163592792 -0800 > > > > +s

Re: Patch to enable the USB handoff on Dell 650

2005-02-01 Thread Andrey Panin
+ MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"), > + MATCH(DMI_PRODUCT_NAME, "Precision WorkStation 650"), > + NO_MATCH, NO_MATCH }}, > + > { NULL, } -- Andrey Panin| Linux and UNIX system administrator [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net signature.asc Description: Digital signature

[Linux-usb-users] USB harddrive not working (2.4, 2.5)

2003-03-19 Thread Andrey Panin
Hi, ISD200 based hard drive bay doesn't work with 2.4 & 2.5, can someone assist me with it? Kernel message log appended. Best regards. -- Andrey Panin| Embedded systems software developer [EMAIL PROTECTED] | PGP key: wwwkeys.pgp.net drivers/usb/core/usb.c: regis

[PATCH] PnP BIOS: io range length bugfix

2001-07-19 Thread Andrey Panin
implement PnP device naming function ? Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -urN -X /usr/dontdiff /linux.vanilla/drivers/pnp/pnp_bios.c /linux/drivers/pnp/pnp_bios.c

[PATCH] drivers/net/at1700.c: missing __init and __initdata

2001-04-17 Thread Andrey Panin
Hi all, this patch (2.4.3-ac7) adds some missing __init and __initdata into at1700.c NIC driver. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -ur linux.vanilla/drivers/net

Re: [RFC] FW: proposal for systems that do not require security

2001-04-10 Thread Andrey Panin
Do you think it worth an effort ? -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc PGP signature

[PATCH] net drivers: missing __init's

2001-04-09 Thread Andrey Panin
Hi all, attached patches add missing __init and (__devinit) to some network drivers: at1700.c, eepro.c, epic100.c, hamachi.c, sis900.c, tokenring/abyss.c, tokenring/tmsisa.c, tokenring/tmspci.c. Best regards. -- Andrey Panin| Embedded systems software engineer

Re: Linux 2.4.3-ac2

2001-04-04 Thread Andrey Panin
Hi Alan, looking at 2.4.3-ac2 patch i found that 165x0 serial driver was downgraded from version 5.05 to 5.02 during the 2.4.3 merge. Looks strange for me, both 2.4.3 and 2.4.2-ac28 had serial driver 5.05 included. Is it late 1 April joke ? :)) Best regards. -- Andrey Panin

[PATCH] MTRR driver: s/suser()/capable(CAP_SYS_ADMIN)/

2001-04-03 Thread Andrey Panin
Hi all, this patch (2.4.3) replaces suser() with capable(CAP_SYS_ADMIN) and adds missing KERN_* constants in some printk() calls. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc

[PATCH] framebuffer drivers: static zero initializers removal

2001-03-29 Thread Andrey Panin
pci_enable_device() call. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -ur -x .depend -x *.o -x *.flags /linux.vanilla/drivers/video/amifb.c /linux/drivers/video/amifb.c

[PATCH] soundcard drivers: static zero initializers removal

2001-03-28 Thread Andrey Panin
Hi all, this patch removes static zero initializers from soundcard drivers. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc patch-sound.gz PGP signature

[PATCH] static zero initializers removal

2001-03-26 Thread Andrey Panin
Hi all, this patch (against 2.4.2-ac25) removes many static zero initializers from various parts of kernel. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc patch-zeroinit.bz2 PGP

[PATCH] add missing KERN_xxx to /linux/fs

2001-03-15 Thread Andrey Panin
Hi all, IMHO subject is self explaining :) Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -ur linux.vanilla/fs/buffer.c linux/fs/buffer.c --- linux.vanilla/fs/buffer.c Thu

[PATCH] /drivers/char/cyclades.c: panic() call removal

2001-03-11 Thread Andrey Panin
Hi all, this patch removes panic() calls and adds MODULE_DEVICE_TABLE to cyclades driver. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc --- /linux/drivers/char/cyclades.c.orig Sun

Re: pci_id's

2001-03-11 Thread Andrey Panin
__00-0-0 8391 - VT8371 [KX133 AGP] > PCI_0604_8086__1131__02-0-0 ? > PCI_0604_8086__244e__01-0-0 244e - 82820 820 (Camino 2) Chipset PCI. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc PGP signature

[PATCH] bug in /drivers/char/epca.c

2001-03-06 Thread Andrey Panin
impossible to remove panic() calls easily. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -ur linux.vanilla/drivers/char/epca.c linux/drivers/char/epca.c --- linux.vanilla/drivers/char

Re: [PATCH] /drivers/char/serial.c cleanup

2001-03-05 Thread Andrey Panin
On Mon, Mar 05, 2001 at 06:48:29AM -0600, Philipp Rumpf wrote: > On Mon, Mar 05, 2001 at 03:37:04PM +0300, Andrey Panin wrote: > > Attached patch (2.4.2-ac11) makes some changes in serial driver: > > adds ioremap() return code checks, removes panic() calls > > and adds bet

[PATCH] /drivers/char/serial.c cleanup

2001-03-05 Thread Andrey Panin
) function. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -u /linux.vanilla/drivers/char/serial.c /linux/drivers/char/serial.c --- /linux.vanilla/drivers/char/serial.cThu

Re: [PATCH] drivers/char/serial.c unchecked ioremap() calls

2001-02-26 Thread Andrey Panin
On Fri, Feb 23, 2001 at 09:15:29AM -0500, Jeff Garzik wrote: > Arnaldo Carvalho de Melo wrote: > > > > Em Fri, Feb 23, 2001 at 10:53:59AM +0300, Andrey Panin escreveu: > > > > > > Hi all, > > > > > > 16x50 serial driver doesn't check iorema

[PATCH] serial drivers: get rid of panic() call

2001-02-26 Thread Andrey Panin
() calls ? - amiserial.c calls requesst_irq() for IRQ_AMIGA_TBE and IRQ_AMIGA_RBF, but doesn't free then on unload and doesn't check return values. BUG too ? I don't know anything about Amiga's, so last question can be horribly stupid :)) Best regards. -- Andrey Panin

[PATCH] drivers/char/serial.c unchecked ioremap() calls

2001-02-22 Thread Andrey Panin
Hi all, 16x50 serial driver doesn't check ioremap() return value. Atached patch should fix this it. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -ur linux.vanilla/dr

[PATCH] drivers/net/sunhme.c, unbalanced and unchecked ioremap()

2001-02-22 Thread Andrey Panin
Hi all, I found that sunhme.c doesn't check ioremap() return value and doesn't call iounmap() on module unload. Attached patch (for 2.4.1-ac20) should fix it, compiles clearly, but untested (I have no such hardware). Best regards. -- Andrey Panin| Embedded system

[PATCH] check_region() removal: drivers/media/video/pms.c

2001-02-19 Thread Andrey Panin
Hi all, I think subject is self explaining :)) Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc --- /linux/drivers/media/video/pms.c.orig Mon Feb 19 19:33:26 2001 +++ /linux

Re: [ANNONCE] Kernel Autoconfiguration utility v.0.9.1.2

2001-02-15 Thread Andrey Panin
Hi Giacomo, one small remark, presence of the Philips SAA7146 doesn't mean presence of the Stradis video capture card. This multimedia bridge chip is very multipurpose device and can be used on very different cards (for example satellite DVB receivers). Best regards. -- Andrey

Re: IRQ conflicts

2001-02-13 Thread Andrey Panin
Hi Brian. I'm sorry, patch itself was not attached in previous post :( Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc --- /linux/arch/i386/kernel/pci-pc.c.orig Mon F

Re: IRQ conflicts

2001-02-13 Thread Andrey Panin
. If I compile sound as a module then the > ACPI driver grabs IRQ9 and the sound get IRQ7. > Hi Brian, please test this patch with ACPI enabled and sound driver compiled in kernel. IMHO it should fix this problem. Best regards. -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc PGP signature

[PATCH] /linux/drivers/char/serial.c: missing __devinitdata

2001-01-03 Thread Andrey Panin
;t it ? -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -u /linux/drivers/char/serial.c.orig /linux/drivers/char/serial.c --- /linux/drivers/char/serial.c.orig Sun Dec 31 22:49:36 2000 +++ /linux/drivers

[PATCH] ACPI interpreter on ACPItableless systems

2000-11-24 Thread Andrey Panin
Hi all, this patch makes ACPI poweroff possible on ACPI capable systems without BIOS provided ACPI tables. I sent this patch to LKML some month ago, but didn't get an answer :( I will be out of this list for some weeks, so happy hacking and good bye, Andrey -- Andrey

[PATCH] linux/drivers/media/radio check_region() removal

2000-11-24 Thread Andrey Panin
Hi all, attached patch removes all check_region() calls from /linux/drivers/media/radio drivers. Most changes are obvious, except radio-cadet.c which needs some maintainer's attention. I hope it will be usefull. Best regards, Andrey -- Andrey Panin| Emb

[PATCH] net drivers cleanup

2000-11-22 Thread Andrey Panin
g process :) Unfortunately I have to make a business trip (new satellite launch mission) so, it's most probably my last patchset for a some weeks at least. Best regards, Andrey -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http

[PATCH] NIC drivers check_region() removal continues

2000-11-10 Thread Andrey Panin
c-mca.c, smc-ultra.c, smc-ultra32.c Best regard, Andrey -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -urN /mnt/disk/linux/drivers/net/3c501.c /linux/drivers/net/3c501.c --- /mnt/dis

Re: [PATCH] media/radio [check_region() removal... ]

2000-11-09 Thread Andrey Panin
On Wed, Nov 08, 2000 at 07:13:46PM -0500, Jeff Garzik wrote: Hi all, > > Finally, a word to you, Alan, and others doing request_region work: it > is more informative to pass the device name (minor, etc.) into > request_region. Ditto for request_irq. Many (most, except net?) > drivers use boa

[PATCH] net drivers check_region() removal continues

2000-11-08 Thread Andrey Panin
Hi all, lots of patches attached: 3c503.c, ac3200.c, cs89x0.c, e2100.c, hp.c, hp-plus.c, lne390.c, ne.c, wd.c Best regards, Andrey diff -urN /mnt/disk/linux/drivers/net/3c503.c /linux/drivers/net/3c503.c --- /mnt/disk/linux/drivers/net/3c503.c Thu Nov 2 22:00:58 2000 +++ /linux/d

[PATCH] ac3200.c, ne3210.c, fmv18x.c & sis900.c check_region() removal

2000-11-03 Thread Andrey Panin
Hi all, new check_region() removal patchset (for 2.4.0-test10) is here :) Best regards, Andrey -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff -urN /mnt/disk/linux/drivers/net

[PATCH] ac3200.c, ni52.c: check_region() removal etc.

2000-10-23 Thread Andrey Panin
Hi all, check_region() removed, zero initializers of static variables removed, module_init() & module_exit() added. Best regards, Andrey -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin

[PATCH] NIC drivers: check_region() removal continues

2000-10-17 Thread Andrey Panin
Hi all, check_region() removal continues ... Affected drivers: hp.c, hp-plus.c, es3210.c, e2100.c, 3c505.c Best regards, Andrey -- Andrey Panin| Embedded systems software engineer [EMAIL PROTECTED]| PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.asc diff

Re: [Q] init_etherdev()

2000-10-16 Thread Andrey Panin
On Mon, Oct 16, 2000 at 02:34:44AM -0400, Jeff Garzik wrote: > Andrey Panin wrote: > > > > Hi all, > > > > after walking through some of NIC drivers and trying to remove check_region() > > calls, i have two small questions: > > > > 1) many NIC dr

[Q] init_etherdev()

2000-10-15 Thread Andrey Panin
Hi all, after walking through some of NIC drivers and trying to remove check_region() calls, i have two small questions: 1) many NIC drivers contain (in XXX_probe1 functions) check like this: if (dev == NULL) { dev = init_etherdev(); } but many driver

[PATCH] ne.c, 3c501.c, 3c503.c, 3c507.c: get rid of check_region()

2000-09-28 Thread Andrey Panin
Hi all, check_region() patches attached. Next patchset will be ready in monday. Best regards, Andrey -- diff -urN /mnt/disk/linux/drivers/net/3c501.c /linux/drivers/net/3c501.c --- /mnt/disk/linux/drivers/net/3c501.c Tue Sep 12 23:47:56 2000 +++ /linux/drivers/net/3c501.c Thu Sep 28

[PATCH] ACPI interpreter makefile fix

2000-09-13 Thread Andrey Panin
Hi all, I recently returned from Sea Launch homeport and already made a new patch :)) This patch fixes bothering problem with ACPI interpreter Makefile. Without this patch ACPI interpreter will unconditionaly recompiled every kernel build. Hope it will be usefull. Best wishes,