forked from auracaster/openocd
Make OpenOCD build using -Og.
With -Og gcc doesn't perform as many optimizations, and as a result warns about some code that it wouldn't otherwise warn about. These fixes all assign values to otherwise uninitialized variables. Change-Id: I9a6ea5eadd73673891ecfec568b8b00d78b596a5 Signed-off-by: Tim Newsome <tim@sifive.com> Reviewed-on: http://openocd.zylin.com/3779 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
This commit is contained in:
committed by
Freddie Chopin
parent
f6b8a4ea65
commit
ca19c82d94
@@ -1340,7 +1340,7 @@ static int kinetis_make_ram_ready(struct target *target)
|
||||
static int kinetis_write_sections(struct flash_bank *bank, const uint8_t *buffer,
|
||||
uint32_t offset, uint32_t count)
|
||||
{
|
||||
int result;
|
||||
int result = ERROR_OK;
|
||||
struct kinetis_flash_bank *kinfo = bank->driver_priv;
|
||||
uint8_t *buffer_aligned = NULL;
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user