porting the codes to gingerbread-statble branch: add new files

Change-Id: I7d5903a038fc7d7eaa442546fb8c17122f22c972
diff --git a/style_unify b/style_unify
new file mode 100755
index 0000000..59a15b2
--- /dev/null
+++ b/style_unify
@@ -0,0 +1,10 @@
+#!/bin/bash
+file=$(find . -name *.[ch])
+for i in $file
+do 
+    echo $i 
+    astyle --style=linux -s -p -U -n $i
+done
+
+
+