summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/tigerlake
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-10-17 13:21:05 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-10-19 14:57:17 +0000
commit14643b33b0f7ea9cde6ce8230793562d4a1b475c (patch)
tree437715af86a62e127f119200b2738d03d6779aab /src/soc/intel/tigerlake
parent3b9be63bd32daff1083f38b409beab71f2655b4f (diff)
downloadcoreboot-14643b33b0f7ea9cde6ce8230793562d4a1b475c.tar.gz
coreboot-14643b33b0f7ea9cde6ce8230793562d4a1b475c.tar.bz2
coreboot-14643b33b0f7ea9cde6ce8230793562d4a1b475c.zip
soc/intel/*/acpi.c: Don't copy structs with `memcpy()`
A regular assignment works just as well and also allows type-checking. Change-Id: Id772771f000ba3bad5d4af05f5651c0f0ee43d6d Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58390 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/intel/tigerlake')
-rw-r--r--src/soc/intel/tigerlake/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/tigerlake/acpi.c b/src/soc/intel/tigerlake/acpi.c
index e560f11f6966..bf032693448d 100644
--- a/src/soc/intel/tigerlake/acpi.c
+++ b/src/soc/intel/tigerlake/acpi.c
@@ -130,7 +130,7 @@ acpi_cstate_t *soc_get_cstate_map(size_t *entries)
}
for (i = 0; i < *entries; i++) {
- memcpy(&map[i], &cstate_map[set[i]], sizeof(acpi_cstate_t));
+ map[i] = cstate_map[set[i]];
map[i].ctype = i + 1;
}
return map;