[PATCH] USB speedtouch (2.4): move MOD_INC_USE_COUNT

From: Duncan Sands (baldrick@wanadoo.fr)
Date: Thu Apr 10 2003 - 02:21:18 EST


 speedtouch.c | 6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff -Nru a/drivers/usb/speedtouch.c b/drivers/usb/speedtouch.c
--- a/drivers/usb/speedtouch.c Thu Apr 10 09:18:28 2003
+++ b/drivers/usb/speedtouch.c Thu Apr 10 09:18:28 2003
@@ -938,15 +938,19 @@
                 return -EAGAIN;
         }
 
+ MOD_INC_USE_COUNT;
+
         down (&instance->serialize); /* vs self, udsl_atm_close */
 
         if (udsl_find_vcc (instance, vpi, vci)) {
                 up (&instance->serialize);
+ MOD_DEC_USE_COUNT;
                 return -EADDRINUSE;
         }
 
         if (!(new = kmalloc (sizeof (struct udsl_vcc_data), GFP_KERNEL))) {
                 up (&instance->serialize);
+ MOD_DEC_USE_COUNT;
                 return -ENOMEM;
         }
 
@@ -975,8 +979,6 @@
         udsl_fire_receivers (instance);
 
         dbg ("udsl_atm_open successful");
-
- MOD_INC_USE_COUNT;
 
         return 0;
 }

-
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 : Tue Apr 15 2003 - 22:00:20 EST