From 185988234d05e99188e3022056792b73313ea5a6 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Fri, 10 Nov 2017 10:29:27 +0530 Subject: soc/intel/cannonlake: Remove structure variable initialization with 0 Variable without an initializer will default to 0 hence no need of an explicit initialization. Change-Id: I208d5e475600b102cd3d972919b170c10c790b32 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/22417 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-by: Furquan Shaikh --- src/soc/intel/cannonlake/reset.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/soc/intel/cannonlake/reset.c') diff --git a/src/soc/intel/cannonlake/reset.c b/src/soc/intel/cannonlake/reset.c index 8192e89029..a270a561b8 100644 --- a/src/soc/intel/cannonlake/reset.c +++ b/src/soc/intel/cannonlake/reset.c @@ -54,9 +54,6 @@ static int send_heci_reset_message(void) } __packed; struct reset_message msg = { .cmd = MKHI_GLOBAL_RESET, - .group_id = 0, - .reserved = 0, - .result = 0, .req_origin = GR_ORIGIN_BIOS_POST, .reset_type = GLOBAL_RST_TYPE }; -- cgit v1.2.3