Remove stale char[] initialization causing unaligned memory access

This throws an alignment fault when run in ARMv8 Foundation
model and seems unnecessary, so remove it.

Change-Id: I2e3aa54502c292958ba44ff4e2e71c27653f2e1a
Signed-off-by: Marcelo Povoa <marcelogp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/186744
Reviewed-by: David Hendricks <dhendrix@chromium.org>
(cherry picked from commit 57510d553c56ca5dfb4765836ddb901744e29e20)
Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com>
Reviewed-on: http://review.coreboot.org/6974
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Marcelo Povoa 2014-02-14 15:42:49 -08:00 committed by Isaac Christensen
parent be1d1e7f83
commit 8404dca5a6
1 changed files with 1 additions and 1 deletions

View File

@ -796,7 +796,7 @@ void print_resource_tree(struct device *root, int debug_level, const char *msg)
void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum)
{
char depth_str[20] = "";
char depth_str[20];
int i;
struct device *sibling;
struct bus *link;