Remove whitespace at end of line

This is a scripted change done using the following command:

find . -type d -name .git -prune -o \
       -type f \! -name \*\~ \! -name .\#\* \
       \! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \
       xargs -0 sed -i -e 's/[\t ]*$//'

Signed-off-by: Chris Dearman <chris@mips.com>
diff --git a/testscripts/adp.sh b/testscripts/adp.sh
index c206729..d22bf8f 100755
--- a/testscripts/adp.sh
+++ b/testscripts/adp.sh
@@ -13,7 +13,7 @@
 
   OPTIONS
     -h    display this message and exit
-    -d    delay for top, in seconds 
+    -d    delay for top, in seconds
     -n    number of iterations for top
 EOF
 }
@@ -75,7 +75,7 @@
 	./adp_test.sh &
 done
 
-echo "Starting 'top', redirecting output to 'adp.log'..." 
+echo "Starting 'top', redirecting output to 'adp.log'..."
 top -b -d $delay -n $iterations > adp.log &
 
 echo "LTP ADP Test done. Killing processes..."