soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / soc / intel / denverton_ns / reset.c
blobbd19476178bebb3e5b99ac423118104e093a4a4f
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <fsp/util.h>
6 void chipset_handle_reset(uint32_t status)
8 switch (status) {
9 case FSP_STATUS_RESET_REQUIRED_5: /* Global Reset */
10 die("Global Reset not implemented!\n");
11 break;
12 default:
13 printk(BIOS_ERR, "unhandled reset type %x\n", status);
14 die("unknown reset type");
15 break;