repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git]
/
src
/
mainboard
/
acer
/
aspire_vn7_572g
/
die.c
blob
ed459e76021d36a06eda810910553c045552bac4
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <console/console.h>
4
#include <delay.h>
5
#include <gpio.h>
6
7
void
die_notify
(
void
)
8
{
9
if
(
ENV_POSTCAR
) {
10
return
;
11
}
12
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
);
19
}
20
}