summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-04-19 15:20:28 +0200
committerAngel Pons <th3fanbus@gmail.com>2021-04-23 10:13:39 +0000
commite76f15f4fdf2d2094b351a6a1a95dec1c63d017c (patch)
tree36d512dd783fd494bcd225250db102ca849020dc /src/cpu
parent3aa757d7056bf7f231da12ca211cba4b2f6c68be (diff)
downloadcoreboot-e76f15f4fdf2d2094b351a6a1a95dec1c63d017c.tar.xz
src: Replace remaining {get,set}_option() instances
With this change, the type-unsafe {get,set}_option() API functions are no longer used directly. The old API gets dropped in a follow-up. Change-Id: Id3f3e172c850d50a7d2f348b1c3736969c73837d Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52512 Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/intel/hyperthreading/intel_sibling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/hyperthreading/intel_sibling.c b/src/cpu/intel/hyperthreading/intel_sibling.c
index ef3367d019..888a2fddda 100644
--- a/src/cpu/intel/hyperthreading/intel_sibling.c
+++ b/src/cpu/intel/hyperthreading/intel_sibling.c
@@ -21,7 +21,7 @@ void intel_sibling_init(struct device *cpu)
/* On the bootstrap processor see if I want sibling cpus enabled */
if (first_time) {
first_time = 0;
- get_option(&disable_siblings, "hyper_threading");
+ disable_siblings = get_int_option("hyper_threading", disable_siblings);
}
result = cpuid(1);
/* Is hyperthreading supported */