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:
		
				
					committed by
					
						
						Felix Held
					
				
			
			
				
	
			
			
			
						parent
						
							db65dd60fb
						
					
				
				
					commit
					4f2b5a5dbd
				
			@@ -7,7 +7,7 @@
 | 
				
			|||||||
struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
 | 
					struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
 | 
				
			||||||
			      int enabled)
 | 
								      int enabled)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct device_path cpu_path;
 | 
						struct device_path cpu_path = {};
 | 
				
			||||||
	struct device *cpu;
 | 
						struct device *cpu;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Build the CPU device path */
 | 
						/* Build the CPU device path */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user