aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/autoport/bd82x6x.go5
-rw-r--r--util/autoport/readme.md2
2 files changed, 4 insertions, 3 deletions
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go
index 5d943e43fe..e2a84e4c51 100644
--- a/util/autoport/bd82x6x.go
+++ b/util/autoport/bd82x6x.go
@@ -359,10 +359,11 @@ void mainboard_get_spd(spd_raw_data *spd, bool id_only)
defer gnvs.Close()
Add_gpl(gnvs)
- gnvs.WriteString(`#include <southbridge/intel/bd82x6x/nvs.h>
+ gnvs.WriteString(`#include <acpi/acpi_gnvs.h>
+#include <southbridge/intel/bd82x6x/nvs.h>
/* FIXME: check this function. */
-void acpi_create_gnvs(struct global_nvs *gnvs)
+void mainboard_fill_gnvs(struct global_nvs *gnvs)
{
/* The lid is open by default. */
gnvs->lids = 1;
diff --git a/util/autoport/readme.md b/util/autoport/readme.md
index bfaaef6f4e..f2b2697da6 100644
--- a/util/autoport/readme.md
+++ b/util/autoport/readme.md
@@ -335,7 +335,7 @@ this value is correct. This can also be determined from the board's schematics.
## GNVS
-`acpi_create_gnvs` sets values in GNVS, which then ACPI makes use of for
+`mainboard_fill_gnvs` sets values in GNVS, which then ACPI makes use of for
various power-related functions. Normally, there is no need to modify it
on laptops (desktops have no "lid"!) but it makes sense to proofread it.