This patch shuts up some more incorrect gcc warnings.

Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>

diff -urN linux-2.5/arch/ppc/xmon/xmon.c testpmac/arch/ppc/xmon/xmon.c
--- linux-2.5/arch/ppc/xmon/xmon.c      2004-10-21 07:17:18.000000000 +1000
+++ testpmac/arch/ppc/xmon/xmon.c       2005-04-02 17:23:19.000000000 +1000
@@ -1033,9 +1033,9 @@
        extern unsigned long Hash_size;
        unsigned *htab = Hash;
        unsigned hsize = Hash_size;
-       unsigned v, hmask, va, last_va;
+       unsigned v, hmask, va, last_va = 0;
        int found, last_found, i;
-       unsigned *hg, w1, last_w2, last_va0;
+       unsigned *hg, w1, last_w2 = 0, last_va0 = 0;
 
        last_found = 0;
        hmask = hsize / 64 - 1;
@@ -1492,7 +1492,7 @@
 {
        int nr, dotted;
        unsigned first_adr;
-       unsigned long inst, last_inst;
+       unsigned long inst, last_inst = 0;
        unsigned char val[4];
 
        dotted = 0;
@@ -1959,7 +1959,7 @@
 xmon_symbol_to_addr(char* symbol)
 {
        char *p, *cur;
-       char *match;
+       char *match = NULL;
        int goodness = 0;
        int result = 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/

Reply via email to