- Fixes '<<' whitespace
- Replace ')\(<<\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(<<\)(' with '\1 \2 ('.
- Replace '\(\w\)\(<<\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2370 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -665,9 +665,9 @@ static int stellaris_protect(struct flash_bank_s *bank, int set, int first, int
|
||||
for (lockregion = first; lockregion <= last; lockregion++)
|
||||
{
|
||||
if (set)
|
||||
fmppe &= ~(1<<lockregion);
|
||||
fmppe &= ~(1 << lockregion);
|
||||
else
|
||||
fmppe |= (1<<lockregion);
|
||||
fmppe |= (1 << lockregion);
|
||||
}
|
||||
|
||||
/* Clear and disable flash programming interrupts */
|
||||
|
||||
Reference in New Issue
Block a user