device/cpu_device.c: Zero initialize struct

Don't rely on this being 0.

Change-Id: I7c0d16b6a265bf9c7abcfdf2f18a43706ee03ea1
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69752
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Arthur Heymans 2022-11-17 20:36:40 +01:00 committed by Felix Held
parent db65dd60fb
commit 4f2b5a5dbd
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
int enabled)
{
struct device_path cpu_path;
struct device_path cpu_path = {};
struct device *cpu;
/* Build the CPU device path */