Coding Style cleanup: replace leading SPACEs by TABs

Signed-off-by: Wolfgang Denk <wd@denx.de>
[trini: Drop changes for PEP 4 following python tools]
Signed-off-by: Tom Rini <trini@ti.com>
diff --git a/tools/Makefile b/tools/Makefile
index c36cde2..ca76f94 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -162,7 +162,7 @@
 		-idirafter $(SRCTREE)/include \
 		-idirafter $(OBJTREE)/include2 \
 		-idirafter $(OBJTREE)/include \
-	        -I $(SRCTREE)/lib/libfdt \
+		-I $(SRCTREE)/lib/libfdt \
 		-I $(SRCTREE)/tools \
 		-DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) \
 		-DUSE_HOSTCC \
diff --git a/tools/bddb/defs.php b/tools/bddb/defs.php
index 39605ab..0b50602 100644
--- a/tools/bddb/defs.php
+++ b/tools/bddb/defs.php
@@ -60,7 +60,7 @@
 	// CPU types
 	$cputyp_vals = array('','MPC8260(HIP3)','MPC8260A(HIP4)','MPC8280(HIP7)','MPC8560');
 
-	// CPU/BUS/CPM clock speeds
+	// CPU/BUS/CPM clock speeds 
 	$clk_vals = array('','33MHZ','66MHZ','100MHZ','133MHZ','166MHZ','200MHZ','233MHZ','266MHZ','300MHZ','333MHZ','366MHZ','400MHZ','433MHZ','466MHZ','500MHZ','533MHZ','566MHZ','600MHZ','633MHZ','666MHZ','700MHZ','733MHZ','766MHZ','800MHZ','833MHZ','866MHZ','900MHZ','933MHZ','966MHZ','1000MHZ','1033MHZ','1066MHZ','1100MHZ','1133MHZ','1166MHZ','1200MHZ','1233MHZ','1266MHZ','1300MHZ','1333MHZ');
 
 	// sdram sizes (nbits array is for eeprom config file)
@@ -178,7 +178,7 @@
 	function enum_to_index($name, $vals) {
 		$index = array_search($GLOBALS[$name], $vals);
 		if ($vals[0] != '')
-		        $index++;
+			$index++;
 		return $index;
 	}
 
diff --git a/tools/img2brec.sh b/tools/img2brec.sh
index a0601e1..0fcdba2 100755
--- a/tools/img2brec.sh
+++ b/tools/img2brec.sh
@@ -3,11 +3,11 @@
 # This script converts binary files (u-boot.bin) into so called
 # bootstrap records that are accepted by Motorola's MC9328MX1/L
 # (a.k.a. DragaonBall i.MX) in "Bootstrap Mode"
-#
+# 
 # The code for the SynchFlash programming routines is taken from
 # Bootloader\Bin\SyncFlash\programBoot_b.txt contained in
-# Motorolas LINUX_BSP_0_3_8.tar.gz
-#
+# Motorolas LINUX_BSP_0_3_8.tar.gz 
+# 
 # The script could easily extended for AMD flash routines.
 #
 # 2004-06-23	-	steven.scholz@imc-berlin.de
@@ -15,34 +15,34 @@
 #################################################################################
 # From the posting to the U-Boot-Users mailing list, 23 Jun 2004:
 # ===============================================================
-# I just hacked a simple script that converts u-boot.bin into a text file
-# containg processor init code, SynchFlash programming code and U-Boot data in
+# I just hacked a simple script that converts u-boot.bin into a text file 
+# containg processor init code, SynchFlash programming code and U-Boot data in 
 # form of so called b-records.
-#
-# This can be used to programm U-Boot into (Synch)Flash using the Bootstrap
+# 
+# This can be used to programm U-Boot into (Synch)Flash using the Bootstrap 
 # Mode of the MC9328MX1/L
-#
+# 
 # 0AFE1F3410202E2E2E000000002073756363656564/
 # 0AFE1F44102E0A0000206661696C656420210A0000/
 # 0AFE100000
 # ...
 # MX1ADS Sync-flash Programming Utility v0.5 2002/08/21
-#
+# 
 # Source address (stored in 0x0AFE0000): 0x0A000000
 # Target address (stored in 0x0AFE0004): 0x0C000000
 # Size           (stored in 0x0AFE0008): 0x0001A320
-#
+# 
 # Press any key to start programming ...
 # Erasing ...
 # Blank checking ...
 # Programming ...
 # Verifying flash ... succeed.
-#
+# 
 # Programming finished.
-#
+# 
 # So no need for a BDI2000 anymore... ;-)
-#
-# This is working on my MX1ADS eval board. Hope this could be useful for
+# 
+# This is working on my MX1ADS eval board. Hope this could be useful for 
 # someone.
 #################################################################################
 
diff --git a/tools/imls/Makefile b/tools/imls/Makefile
index 1be1edb..e371983 100644
--- a/tools/imls/Makefile
+++ b/tools/imls/Makefile
@@ -39,7 +39,7 @@
 HOSTCPPFLAGS  = -idirafter $(SRCTREE)/include \
 		-idirafter $(OBJTREE)/include2 \
 		-idirafter $(OBJTREE)/include \
-	        -I $(SRCTREE)/lib/libfdt \
+		-I $(SRCTREE)/lib/libfdt \
 		-I $(SRCTREE)/tools \
 		-DUSE_HOSTCC -D__KERNEL_STRICT_NAMES
 
diff --git a/tools/kernel-doc/docproc.c b/tools/kernel-doc/docproc.c
index d4fc42e..a9b49c5 100644
--- a/tools/kernel-doc/docproc.c
+++ b/tools/kernel-doc/docproc.c
@@ -153,7 +153,7 @@
 static void add_new_symbol(struct symfile *sym, char * symname)
 {
 	sym->symbollist =
-          realloc(sym->symbollist, (sym->symbolcnt + 1) * sizeof(char *));
+	  realloc(sym->symbollist, (sym->symbolcnt + 1) * sizeof(char *));
 	sym->symbollist[sym->symbolcnt++].name = strdup(symname);
 }
 
@@ -214,7 +214,7 @@
 			char *p;
 			char *e;
 			if (((p = strstr(line, "EXPORT_SYMBOL_GPL")) != NULL) ||
-                            ((p = strstr(line, "EXPORT_SYMBOL")) != NULL)) {
+			    ((p = strstr(line, "EXPORT_SYMBOL")) != NULL)) {
 				/* Skip EXPORT_SYMBOL{_GPL} */
 				while (isalnum(*p) || *p == '_')
 					p++;
@@ -290,24 +290,24 @@
 static void singfunc(char * filename, char * line)
 {
 	char *vec[200]; /* Enough for specific functions */
-        int i, idx = 0;
-        int startofsym = 1;
+	int i, idx = 0;
+	int startofsym = 1;
 	vec[idx++] = KERNELDOC;
 	vec[idx++] = DOCBOOK;
 
-        /* Split line up in individual parameters preceded by FUNCTION */
-        for (i=0; line[i]; i++) {
-                if (isspace(line[i])) {
-                        line[i] = '\0';
-                        startofsym = 1;
-                        continue;
-                }
-                if (startofsym) {
-                        startofsym = 0;
-                        vec[idx++] = FUNCTION;
-                        vec[idx++] = &line[i];
-                }
-        }
+	/* Split line up in individual parameters preceded by FUNCTION */
+	for (i=0; line[i]; i++) {
+		if (isspace(line[i])) {
+			line[i] = '\0';
+			startofsym = 1;
+			continue;
+		}
+		if (startofsym) {
+			startofsym = 0;
+			vec[idx++] = FUNCTION;
+			vec[idx++] = &line[i];
+		}
+	}
 	for (i = 0; i < idx; i++) {
 		if (strcmp(vec[i], FUNCTION))
 			continue;
@@ -456,14 +456,14 @@
 					break;
 				case 'D':
 					while (*s && !isspace(*s)) s++;
-                                        *s = '\0';
-                                        symbolsonly(line+2);
-                                        break;
+					*s = '\0';
+					symbolsonly(line+2);
+					break;
 				case 'F':
 					/* filename */
 					while (*s && !isspace(*s)) s++;
 					*s++ = '\0';
-                                        /* function names */
+					/* function names */
 					while (isspace(*s))
 						s++;
 					singlefunctions(line +2, s);
@@ -511,11 +511,11 @@
 	}
 	/* Open file, exit on error */
 	infile = fopen(argv[2], "r");
-        if (infile == NULL) {
-                fprintf(stderr, "docproc: ");
-                perror(argv[2]);
-                exit(2);
-        }
+	if (infile == NULL) {
+		fprintf(stderr, "docproc: ");
+		perror(argv[2]);
+		exit(2);
+	}
 
 	if (strcmp("doc", argv[1]) == 0) {
 		/* Need to do this in two passes.
diff --git a/tools/kernel-doc/kernel-doc b/tools/kernel-doc/kernel-doc
index 6347418..cbbf34c 100755
--- a/tools/kernel-doc/kernel-doc
+++ b/tools/kernel-doc/kernel-doc
@@ -432,7 +432,7 @@
     my $contents = join "\n", @_;
 
     if ($no_doc_sections) {
-        return;
+	return;
     }
 
     if (($function_only == 0) ||
diff --git a/tools/reformat.py b/tools/reformat.py
index 7e03890..61306d0 100755
--- a/tools/reformat.py
+++ b/tools/reformat.py
@@ -49,7 +49,7 @@
 		["ignore-case","default","split="])
 except getopt.GetoptError as err:
 	print str(err) # will print something like "option -a not recognized"
-        sys.exit(2)
+	sys.exit(2)
 
 for o, a in opts:
 	if o in ("-s", "--split"):
diff --git a/tools/scripts/make-asm-offsets b/tools/scripts/make-asm-offsets
index c686976..4c33756 100755
--- a/tools/scripts/make-asm-offsets
+++ b/tools/scripts/make-asm-offsets
@@ -22,6 +22,6 @@
  echo " *"
  echo " */"
  echo ""
- sed -ne "${SED_CMD}" $1
+ sed -ne "${SED_CMD}" $1 
  echo ""
  echo "#endif" ) > $2
diff --git a/tools/ubsha1.c b/tools/ubsha1.c
index c003f9a..1041588 100644
--- a/tools/ubsha1.c
+++ b/tools/ubsha1.c
@@ -63,10 +63,10 @@
 		sha1_csum ((unsigned char *) data, len, (unsigned char *)output);
 
 		printf ("U-Boot sum:\n");
-	        for (i = 0; i < 20 ; i++) {
-	            printf ("%02X ", output[i]);
-	        }
-	        printf ("\n");
+		for (i = 0; i < 20 ; i++) {
+		    printf ("%02X ", output[i]);
+		}
+		printf ("\n");
 		/* overwrite the sum in the bin file, with the actual */
 		lseek (ifd, SHA1_SUM_POS, SEEK_END);
 		if (write (ifd, output, SHA1_SUM_LEN) != SHA1_SUM_LEN) {