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/ltpdmmapper.sh b/testscripts/ltpdmmapper.sh
index 92e70bc..f49e596 100755
--- a/testscripts/ltpdmmapper.sh
+++ b/testscripts/ltpdmmapper.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 # This script should be run prior to running executing the filesystem tests.
 # valid devices need to be passed for Device Mapper to work correctly
-# 03/14/03 mridge@us.ibm.com added instance and time command line options 
+# 03/14/03 mridge@us.ibm.com added instance and time command line options
 
 cd `dirname $0`
 export LTPROOT=${PWD}
@@ -14,7 +14,7 @@
 export TMPBASE="/tmp"
 
 
-usage() 
+usage()
 {
 	cat <<-END >&2
 	usage: ${0##*/} [ -a part1 ] [ -b part2 ]
@@ -26,14 +26,14 @@
         package. You can download it from http://www.sistina.com. Follow
         the README/INSTALL file within the package to install it.
 
-             
+
 	defaults:
 	part1=$part1
 	part2=$part2
 	ltproot=$LTPROOT
 	tmpdir=$TMPBASE
 
-	example: ${0##*/} -a hdc1 -b hdc2 
+	example: ${0##*/} -a hdc1 -b hdc2
 
 
 	END
@@ -44,7 +44,7 @@
 do      case $arg in
 		a)	part1=$OPTARG;;
                 b)      part2=$OPTARG;;
-			
+
                 \?)     echo "************** Help Info: ********************"
                         usage;;
         esac