[Style] More whitespace fixes.

This commit is contained in:
Piotr Esden-Tempski
2015-12-14 23:42:27 +01:00
parent 3a7cbec776
commit 5828a77749
4 changed files with 12 additions and 11 deletions

View File

@@ -164,8 +164,8 @@ Status bit polling is used to detect end of operation.
void flash_program_word(uint32_t address, uint32_t data)
{
flash_program_half_word(address,(uint16_t)data);
flash_program_half_word(address+2,(uint16_t)(data>>16));
flash_program_half_word(address, (uint16_t)data);
flash_program_half_word(address+2, (uint16_t)(data>>16));
}
/*---------------------------------------------------------------------------*/