tcl: remove trailing whitespace
The script checkpatch available in new Linux kernel offers an
experimental feature for automatically fix the code in place.
While still experimental, the feature works quite well for simple
fixes, like spacing.
This patch has been created automatically with the script under
review for inclusion in OpenOCD, using the command:
find tcl/ -type f -exec ./tools/scripts/checkpatch.pl \
-q --types TRAILING_WHITESPACE --fix-inplace -f {} \;
The patch only changes amount and position of whitespace, thus
the following commands show empty diff
git diff -w
git log -w -p
git log -w --stat
Change-Id: Ie7e3a236f4db9c70019e3b3c7e851edbd3a9dd84
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5616
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Tested-by: jenkins
This commit is contained in:
@@ -11,28 +11,28 @@ proc init_pll_sdram { } {
|
||||
#echo "---------- Initializing PLL and SDRAM ---------"
|
||||
#watchdog timer disable
|
||||
mww phys 0x53000000 0x00000000
|
||||
|
||||
|
||||
#disable all interrupts
|
||||
mww phys 0x4a000008 0xffffffff
|
||||
|
||||
|
||||
#disable all sub-interrupts
|
||||
mww phys 0x4a00001c 0x000007ff
|
||||
|
||||
|
||||
#clear all source pending bits
|
||||
mww phys 0x4a000000 0xffffffff
|
||||
|
||||
|
||||
#clear all sub-source pending bits
|
||||
mww phys 0x4a000018 0x000007ff
|
||||
|
||||
|
||||
#clear interrupt pending bit
|
||||
mww phys 0x4a000010 0xffffffff
|
||||
|
||||
|
||||
#PLL locktime counter
|
||||
mww phys 0x4c000000 0x00ffffff
|
||||
|
||||
|
||||
#Fin=12MHz Fout=202.8MHz
|
||||
#mww phys 0x4c000004 0x000a1031
|
||||
|
||||
|
||||
#FCLK:HCLK:PCLK = 1:2:4
|
||||
mww phys 0x4c000014 0x00000003
|
||||
|
||||
|
||||
Reference in New Issue
Block a user