Revert "CMOS: Add set_option and rework get_option."
This reverts commit eb7bb49eb5b48c39baf7a256b7c74e23e3da5660. Stepan pointed out that "s" means string, which makes the following statement in this commit message invalid: "Since we either have reserved space (which we shouldn't do anything with in these two functions), an enum or a hexadecimal value, unsigned int seemed like the way to go." Signed-off-by: Luc Verhaegen <libv@skynet.be> Acked-by: Luc Verhaegen <libv@skynet.be> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4335 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -64,7 +64,7 @@ static void mcf3_read_resources(device_t dev)
|
||||
}
|
||||
|
||||
iommu = 1;
|
||||
get_option("iommu", &iommu);
|
||||
get_option(&iommu, "iommu");
|
||||
|
||||
if (iommu) {
|
||||
/* Add a Gart apeture resource */
|
||||
|
@@ -1258,7 +1258,7 @@ static u32 cpu_bus_scan(device_t dev, u32 max)
|
||||
unsigned nb_cfg_54;
|
||||
unsigned siblings;
|
||||
int cores_found;
|
||||
uint32_t disable_siblings;
|
||||
int disable_siblings;
|
||||
unsigned ApicIdCoreIdSize;
|
||||
|
||||
nb_cfg_54 = 0;
|
||||
@@ -1271,7 +1271,7 @@ static u32 cpu_bus_scan(device_t dev, u32 max)
|
||||
|
||||
disable_siblings = !CONFIG_LOGICAL_CPUS;
|
||||
#if CONFIG_LOGICAL_CPUS == 1
|
||||
get_option("quad_core", &disable_siblings);
|
||||
get_option(&disable_siblings, "quad_core");
|
||||
#endif
|
||||
|
||||
// for pre_e0, nb_cfg_54 can not be set, ( even set, when you read it
|
||||
|
@@ -48,7 +48,7 @@ static void mcf3_read_resources(device_t dev)
|
||||
}
|
||||
|
||||
iommu = 1;
|
||||
get_option("iommu", &iommu);
|
||||
get_option(&iommu, "iommu");
|
||||
|
||||
if (iommu) {
|
||||
/* Add a Gart apeture resource */
|
||||
|
@@ -1177,7 +1177,7 @@ static unsigned int cpu_bus_scan(device_t dev, unsigned int max)
|
||||
unsigned nb_cfg_54;
|
||||
unsigned siblings;
|
||||
int e0_later_single_core;
|
||||
uint32_t disable_siblings;
|
||||
int disable_siblings;
|
||||
|
||||
nb_cfg_54 = 0;
|
||||
sysconf.enabled_apic_ext_id = 0;
|
||||
@@ -1190,7 +1190,7 @@ static unsigned int cpu_bus_scan(device_t dev, unsigned int max)
|
||||
|
||||
disable_siblings = !CONFIG_LOGICAL_CPUS;
|
||||
#if CONFIG_LOGICAL_CPUS == 1
|
||||
get_option("dual_core", &disable_siblings);
|
||||
get_option(&disable_siblings, "dual_core");
|
||||
#endif
|
||||
|
||||
// for pre_e0, nb_cfg_54 can not be set, ( even set, when you read it still be 0)
|
||||
|
Reference in New Issue
Block a user