- Fixes '==' whitespace
- Replace '\(\w\)\(==\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2390 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
c3e7d33b54
commit
e47be43ed1
|
@ -1271,7 +1271,7 @@ sam3_explain_ckgr_plla( struct sam3_chip *pChip )
|
||||||
mula = sam3_reg_fieldname( pChip, "MULA", pChip->cfg.CKGR_PLLAR, 16, 11 );
|
mula = sam3_reg_fieldname( pChip, "MULA", pChip->cfg.CKGR_PLLAR, 16, 11 );
|
||||||
sam3_sprintf(pChip,"\n");
|
sam3_sprintf(pChip,"\n");
|
||||||
pChip->cfg.plla_freq = 0;
|
pChip->cfg.plla_freq = 0;
|
||||||
if ( mula==0 ){
|
if ( mula == 0 ){
|
||||||
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,mula=0)\n");
|
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,mula=0)\n");
|
||||||
} else if ( diva == 0 ){
|
} else if ( diva == 0 ){
|
||||||
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,diva=0)\n");
|
sam3_sprintf(pChip,"\tPLLA Freq: (Disabled,diva=0)\n");
|
||||||
|
|
|
@ -219,7 +219,7 @@ membuf_append( struct membuf *pBuf, const void *pData, size_t len )
|
||||||
// do the grow.
|
// do the grow.
|
||||||
pBuf = membuf_grow( pBuf, r );
|
pBuf = membuf_grow( pBuf, r );
|
||||||
// failed?
|
// failed?
|
||||||
if (pBuf==NULL){
|
if (pBuf == NULL){
|
||||||
return pBuf;
|
return pBuf;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue