[PATCH][2.6] fix warning in iee1394 nodemgr

From: Zwane Mwaikambo (zwane@arm.linux.org.uk)
Date: Wed Jul 16 2003 - 01:01:12 EST


Looks like a sensible default

drivers/ieee1394/nodemgr.c: In function `nodemgr_host_thread':
drivers/ieee1394/nodemgr.c:1621: warning: `generation' might be used uninitialized in this function

Index: linux-2.5/drivers/ieee1394/nodemgr.c
===================================================================
RCS file: /home/cvs/linux-2.5/drivers/ieee1394/nodemgr.c,v
retrieving revision 1.28
diff -u -p -B -r1.28 nodemgr.c
--- linux-2.5/drivers/ieee1394/nodemgr.c 29 Jun 2003 18:51:20 -0000 1.28
+++ linux-2.5/drivers/ieee1394/nodemgr.c 16 Jul 2003 03:54:56 -0000
@@ -1618,7 +1618,7 @@ static int nodemgr_host_thread(void *__h
          * happens when we get a bus reset. */
         while (!down_interruptible(&hi->reset_sem) &&
                !down_interruptible(&nodemgr_serialize)) {
- unsigned int generation;
+ unsigned int generation = get_hpsb_generation(host);
                 int i;
 
                 /* Pause for 1/4 second, to make sure things settle down. */

-- 
function.linuxpower.ca
-
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 : Wed Jul 23 2003 - 22:00:23 EST