diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-04-19 15:20:28 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-04-23 10:13:39 +0000 |
commit | e76f15f4fdf2d2094b351a6a1a95dec1c63d017c (patch) | |
tree | 36d512dd783fd494bcd225250db102ca849020dc /src/cpu/intel/hyperthreading | |
parent | 3aa757d7056bf7f231da12ca211cba4b2f6c68be (diff) |
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/intel/hyperthreading')
-rw-r--r-- | src/cpu/intel/hyperthreading/intel_sibling.c | 2 |
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 */ |