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
drivers/wifi: Remove unnecessary data structure copy
[coreboot2.git]
/
src
/
arch
/
x86
/
acpi
/
post.asl
blob
dbdc68110f86d02625be02eaf6e87878b22e9d46
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#if CONFIG(POST_IO)
4
5
/* POST code support, typically on port 80 */
6
OperationRegion (POST, SystemIO, CONFIG_POST_IO_PORT, 1)
7
Field (POST, ByteAcc, Lock, Preserve)
8
{
9
DBG0, 8
10
}
11
12
#else
13
14
/* Dummy placeholder to avoid issues */
15
Name (DBG0, 0)
16
17
#endif