soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / mainboard / acer / aspire_vn7_572g / die.c
blobed459e76021d36a06eda810910553c045552bac4
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <delay.h>
5 #include <gpio.h>
7 void die_notify(void)
9 if (ENV_POSTCAR) {
10 return;
13 /* Make SATA LED blink */
14 while (1) {
15 gpio_set(GPP_E8, 1);
16 mdelay(100);
17 gpio_set(GPP_E8, 0);
18 mdelay(100);