aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-06-29 02:56:49 +0300
committerNico Huber <nico.h@gmx.de>2021-01-10 11:29:10 +0000
commita9766c7adaaa442fc3c42ca4f31fe4050cfa653d (patch)
treed926f7613b2849c11d5c7427ed43cbdf22eb978f /src/southbridge
parent8a5f157fdff9e0af9e7e0b9714c6b55f28f8ef1d (diff)
mb/x/acpi_tables: Rename to mainboard_fill_gnvs()
Rename acpi_create_gnvs() functions under mb/ to reflect their changed functionality. Remove now empty mb/acpi_tables.c files. Change-Id: Ia366867ef73d1ade9805dc29b8e14b3073f44f60 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48707 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/intel/bd82x6x/lpc.c2
-rw-r--r--src/southbridge/intel/i82801gx/lpc.c2
-rw-r--r--src/southbridge/intel/i82801ix/lpc.c2
-rw-r--r--src/southbridge/intel/i82801jx/lpc.c2
-rw-r--r--src/southbridge/intel/ibexpeak/lpc.c2
-rw-r--r--src/southbridge/intel/lynxpoint/lpc.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/southbridge/intel/bd82x6x/lpc.c b/src/southbridge/intel/bd82x6x/lpc.c
index 5b8921012e..bb1ab6bb0d 100644
--- a/src/southbridge/intel/bd82x6x/lpc.c
+++ b/src/southbridge/intel/bd82x6x/lpc.c
@@ -665,7 +665,7 @@ void southbridge_inject_dsdt(const struct device *dev)
return;
soc_fill_gnvs(gnvs);
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}
diff --git a/src/southbridge/intel/i82801gx/lpc.c b/src/southbridge/intel/i82801gx/lpc.c
index 06481ffb0b..5438b00e6b 100644
--- a/src/southbridge/intel/i82801gx/lpc.c
+++ b/src/southbridge/intel/i82801gx/lpc.c
@@ -496,7 +496,7 @@ void southbridge_inject_dsdt(const struct device *dev)
return;
soc_fill_gnvs(gnvs);
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}
diff --git a/src/southbridge/intel/i82801ix/lpc.c b/src/southbridge/intel/i82801ix/lpc.c
index 844f03bd53..cefc30cb5e 100644
--- a/src/southbridge/intel/i82801ix/lpc.c
+++ b/src/southbridge/intel/i82801ix/lpc.c
@@ -469,7 +469,7 @@ void southbridge_inject_dsdt(const struct device *dev)
if (!gnvs)
return;
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}
diff --git a/src/southbridge/intel/i82801jx/lpc.c b/src/southbridge/intel/i82801jx/lpc.c
index 65d371de16..86478fab19 100644
--- a/src/southbridge/intel/i82801jx/lpc.c
+++ b/src/southbridge/intel/i82801jx/lpc.c
@@ -487,7 +487,7 @@ void southbridge_inject_dsdt(const struct device *dev)
if (!gnvs)
return;
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}
diff --git a/src/southbridge/intel/ibexpeak/lpc.c b/src/southbridge/intel/ibexpeak/lpc.c
index 9ef9e2b390..3f59a19f40 100644
--- a/src/southbridge/intel/ibexpeak/lpc.c
+++ b/src/southbridge/intel/ibexpeak/lpc.c
@@ -560,7 +560,7 @@ void southbridge_inject_dsdt(const struct device *dev)
return;
soc_fill_gnvs(gnvs);
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}
diff --git a/src/southbridge/intel/lynxpoint/lpc.c b/src/southbridge/intel/lynxpoint/lpc.c
index be39e5e5c2..05593b16bc 100644
--- a/src/southbridge/intel/lynxpoint/lpc.c
+++ b/src/southbridge/intel/lynxpoint/lpc.c
@@ -708,7 +708,7 @@ void southbridge_inject_dsdt(const struct device *dev)
return;
soc_fill_gnvs(gnvs);
- acpi_create_gnvs(gnvs);
+ mainboard_fill_gnvs(gnvs);
acpi_inject_nvsa();
}