diff options
author | Subrata Banik <subrata.banik@intel.com> | 2017-11-10 10:29:27 +0530 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-11-10 16:38:05 +0000 |
commit | 185988234d05e99188e3022056792b73313ea5a6 (patch) | |
tree | 67306e4bd5a778520a5d3b869155bb3ab4aa5379 /src/soc/intel/cannonlake/reset.c | |
parent | 05e06cd0bef0d85de2466cfccf7c8ce375f950ee (diff) |
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 <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/22417
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/cannonlake/reset.c')
-rw-r--r-- | src/soc/intel/cannonlake/reset.c | 3 |
1 files changed, 0 insertions, 3 deletions
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 }; |