summaryrefslogtreecommitdiff
path: root/src/flash
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-24 09:37:31 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-24 09:37:31 +0000
commite47be43ed1cebd6642cc4891ef5923a6cd3a92cb (patch)
tree735df54b32e8d1dd3324af25047d0264209edeb7 /src/flash
parentc3e7d33b54e27e5458c9394e1e4fcbcda7dec0a7 (diff)
downloadopenocd+libswd-e47be43ed1cebd6642cc4891ef5923a6cd3a92cb.tar.gz
openocd+libswd-e47be43ed1cebd6642cc4891ef5923a6cd3a92cb.tar.bz2
openocd+libswd-e47be43ed1cebd6642cc4891ef5923a6cd3a92cb.tar.xz
openocd+libswd-e47be43ed1cebd6642cc4891ef5923a6cd3a92cb.zip
- Fixes '==' whitespace
- Replace '\(\w\)\(==\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2390 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/at91sam3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/at91sam3.c b/src/flash/at91sam3.c
index bb51ad4c..da3e6242 100644
--- a/src/flash/at91sam3.c
+++ b/src/flash/at91sam3.c
@@ -1271,7 +1271,7 @@ sam3_explain_ckgr_plla( struct sam3_chip *pChip )
mula = sam3_reg_fieldname( pChip, "MULA", pChip->cfg.CKGR_PLLAR, 16, 11 );
sam3_sprintf(pChip,"\n");
pChip->cfg.plla_freq = 0;
- if ( mula==0 ){
+ if ( mula == 0 ){
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,mula=0)\n");
} else if ( diva == 0 ){
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,diva=0)\n");