repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/google/fatcat/var/fatcat: Refactor GPIO programming for UFS support
[coreboot.git]
/
src
/
mainboard
/
google
/
brya
/
variants
/
constitution
/
variant.c
blob
ca09253981fe73957408fe8d6dbb19b7062d58fc
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <fw_config.h>
4
#include <sar.h>
5
6
const char
*
get_wifi_sar_cbfs_filename
(
void
)
7
{
8
if
(
fw_config_probe
(
FW_CONFIG
(
WIFI_SAR_ID
,
ID_0
))) {
9
return
"wifi_sar_0.hex"
;
10
}
11
return
NULL
;
12
}