[PATCH 2.4] : ir241_smc_msg.diff

From: Jean Tourrilhes (jt@bougret.hpl.hp.com)
Date: Mon Dec 02 2002 - 18:40:17 EST


ir241_smc_msg.diff :
------------------
                <Following patch from Jeff Snyder>
        o [CRITICA] Release the proper region and not NULL pointer
        o [FEATURE] Fix messages

diff -u -p linux/drivers/net/irda/smc-ircc.d8.c linux/drivers/net/irda/smc-ircc.c
--- linux/drivers/net/irda/smc-ircc.d8.c Tue Aug 6 18:12:05 2002
+++ linux/drivers/net/irda/smc-ircc.c Tue Aug 6 18:14:08 2002
@@ -10,6 +10,8 @@
  * Modified by: Dag Brattli <dag@brattli.net>
  * Modified at: Tue Jun 26 2001
  * Modified by: Stefani Seibold <stefani@seibold.net>
+ * Modified at: Thur Apr 18 2002
+ * Modified by: Jeff Snyder <je4d@pobox.com>
  *
  * Copyright (c) 2001 Stefani Seibold
  * Copyright (c) 1999-2001 Dag Brattli
@@ -537,7 +539,7 @@ static int __init ircc_open(unsigned int
         if (ircc_irq < 255) {
                 if (ircc_irq!=irq)
                         MESSAGE("%s, Overriding IRQ - chip says %d, using %d\n",
- driver_name, self->io->irq, ircc_irq);
+ driver_name, irq, ircc_irq);
                 self->io->irq = ircc_irq;
         }
         else
@@ -545,13 +547,13 @@ static int __init ircc_open(unsigned int
         if (ircc_dma < 255) {
                 if (ircc_dma!=dma)
                         MESSAGE("%s, Overriding DMA - chip says %d, using %d\n",
- driver_name, self->io->dma, ircc_dma);
+ driver_name, dma, ircc_dma);
                 self->io->dma = ircc_dma;
         }
         else
                 self->io->dma = dma;
 
- request_region(fir_base, CHIP_IO_EXTENT, driver_name);
+ request_region(self->io->fir_base, CHIP_IO_EXTENT, driver_name);
 
         /* Initialize QoS for this device */
         irda_init_max_qos_capabilies(&irport->qos);
@@ -1187,10 +1189,9 @@ static int __exit ircc_close(struct ircc
         outb(IRCC_CFGB_IR, iobase+IRCC_SCE_CFGB);
 #endif
         /* Release the PORT that this driver is using */
- IRDA_DEBUG(0, "%s(), releasing 0x%03x\n",
- __FUNCTION__, self->io->fir_base);
+ IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__, iobase);
 
- release_region(self->io->fir_base, self->io->fir_ext);
+ release_region(iobase, CHIP_IO_EXTENT);
 
         if (self->tx_buff.head)
                 kfree(self->tx_buff.head);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Dec 07 2002 - 22:00:15 EST