mb/starlabs/*/cfr: Remove reboot_counter CFR option

This option isn't hooked up to anything currently, so remove it.

Change-Id: I01cddc6dbffa5a0cf914ef3c529366ee6ceaaf02
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/87560
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Matt DeVillier 2025-05-02 13:26:20 -05:00
commit ea32e30a18
6 changed files with 0 additions and 41 deletions

View file

@ -94,13 +94,6 @@ static const struct sm_object pciexp_l1ss = SM_DECLARE_ENUM({
SM_ENUM_VALUE_END },
});
static const struct sm_object reboot_counter = SM_DECLARE_NUMBER({
.opt_name = "reboot_counter",
.ui_name = "Reboot Counter",
.flags = CFR_OPTFLAG_SUPPRESS,
.default_value = 0,
});
static const struct sm_object vtd = SM_DECLARE_BOOL({
.opt_name = "vtd",
.ui_name = "VT-d",
@ -165,7 +158,6 @@ static struct sm_obj_form coreboot = {
.ui_name = "coreboot",
.obj_list = (const struct sm_object *[]) {
&debug_level,
&reboot_counter,
NULL
},
};

View file

@ -53,13 +53,6 @@ static const struct sm_object microphone = SM_DECLARE_BOOL({
.default_value = true,
});
static const struct sm_object reboot_counter = SM_DECLARE_NUMBER({
.opt_name = "reboot_counter",
.ui_name = "Reboot Counter",
.flags = CFR_OPTFLAG_SUPPRESS,
.default_value = 0,
});
static const struct sm_object webcam = SM_DECLARE_BOOL({
.opt_name = "webcam",
.ui_name = "Webcam",
@ -144,7 +137,6 @@ static struct sm_obj_form coreboot = {
.ui_name = "coreboot",
.obj_list = (const struct sm_object *[]) {
&debug_level,
&reboot_counter,
NULL
},
};

View file

@ -102,7 +102,6 @@ static struct sm_obj_form coreboot = {
.ui_name = "coreboot",
.obj_list = (const struct sm_object *[]) {
&debug_level,
&reboot_counter,
NULL
},
};

View file

@ -128,14 +128,6 @@ static const struct sm_object pciexp_l1ss = SM_DECLARE_ENUM({
SM_ENUM_VALUE_END },
});
static const struct sm_object reboot_counter = SM_DECLARE_NUMBER({
.opt_name = "reboot_counter",
.ui_name = "Reboot Counter",
.flags = CFR_OPTFLAG_SUPPRESS,
.default_value = 0,
});
static const struct sm_object thunderbolt = SM_DECLARE_BOOL({
.opt_name = "thunderbolt",
.ui_name = "Thunderbolt",

View file

@ -106,13 +106,6 @@ static const struct sm_object pciexp_l1ss = SM_DECLARE_ENUM({
});
#endif
static const struct sm_object reboot_counter = SM_DECLARE_NUMBER({
.opt_name = "reboot_counter",
.ui_name = "Reboot Counter",
.flags = CFR_OPTFLAG_SUPPRESS,
.default_value = 0,
});
#if CONFIG(DRIVERS_INTEL_USB4_RETIMER)
static const struct sm_object thunderbolt = SM_DECLARE_BOOL({
.opt_name = "thunderbolt",
@ -220,7 +213,6 @@ static struct sm_obj_form coreboot = {
.ui_name = "coreboot",
.obj_list = (const struct sm_object *[]) {
&debug_level,
&reboot_counter,
NULL
},
};

View file

@ -126,13 +126,6 @@ static const struct sm_object pciexp_l1ss = SM_DECLARE_ENUM({
});
#endif
static const struct sm_object reboot_counter = SM_DECLARE_NUMBER({
.opt_name = "reboot_counter",
.ui_name = "Reboot Counter",
.flags = CFR_OPTFLAG_SUPPRESS,
.default_value = 0,
});
static const struct sm_object touchscreen = SM_DECLARE_BOOL({
.opt_name = "touchscreen",
.ui_name = "Touchscreen",
@ -245,7 +238,6 @@ static struct sm_obj_form coreboot = {
.ui_name = "coreboot",
.obj_list = (const struct sm_object *[]) {
&debug_level,
&reboot_counter,
NULL
},
};