Index: arch/ppc32/src/fmath.c
===================================================================
--- arch/ppc32/src/fmath.c	(revision adb2ebf8ae233e612225d6bd9fe2229d2b8e4d67)
+++ arch/ppc32/src/fmath.c	(revision 80bff3426b0c5ce4e21f4e7f42a392db6cfc0d9a)
@@ -44,13 +44,5 @@
 double fmath_get_decimal_exponent(double num) 
 {	//TODO:
-	double value;
-	// log10(2)*log2(x) => log10(x) 
-/*	__asm__ __volatile__ ( \
-	"fldlg2		#load log10(2)	\n\t"	\
-	"fxch %%st(1) 		\n\t" \
-	"fyl2x		#count st(0)*log2(st(1))->st(1); pop st(0)	\n\t" \
-	: "=t" (value) : "0"(num) );
-*/	return value;
-	
+	return 0;	
 }
 
Index: arch/ppc32/src/mm/memory_init.c
===================================================================
--- arch/ppc32/src/mm/memory_init.c	(revision adb2ebf8ae233e612225d6bd9fe2229d2b8e4d67)
+++ arch/ppc32/src/mm/memory_init.c	(revision 80bff3426b0c5ce4e21f4e7f42a392db6cfc0d9a)
@@ -49,5 +49,5 @@
 		panic("Device /memory has no reg property\n");
 	
-	size_t total;
+	size_t total = 0;
 	int i;
 	
