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
cpu/x86/smm/pci_resource_store: Store DEV/VEN ID
[coreboot2.git]
/
src
/
mainboard
/
google
/
brya
/
variants
/
constitution
/
variant.c
blob
289481c2ee3a46b1b6cb9db6b72a2e3b04f20e7c
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <console/console.h>
4
#include <fw_config.h>
5
#include <sar.h>
6
7
const char
*
get_wifi_sar_cbfs_filename
(
void
)
8
{
9
if
(
fw_config_probe
(
FW_CONFIG
(
WIFI_SAR_ID
,
ID_0
))) {
10
return
"wifi_sar_0.hex"
;
11
}
12
return
NULL
;
13
}