minor stylecheck cleanups

This commit is contained in:
Karl Palsson
2016-02-29 21:30:31 +00:00
parent 57c7ba3283
commit ba9cb7dc5d
3 changed files with 5 additions and 5 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));
}
/*---------------------------------------------------------------------------*/