diff --git a/src/mainboard/google/hatch/cfr.c b/src/mainboard/google/hatch/cfr.c index ac424fbb16..3ddcdb1a19 100644 --- a/src/mainboard/google/hatch/cfr.c +++ b/src/mainboard/google/hatch/cfr.c @@ -6,17 +6,13 @@ #include #include -static const struct sm_object touchpad_wake = SM_DECLARE_ENUM({ +static const struct sm_object touchpad_wake = SM_DECLARE_BOOL({ .opt_name = "touchpad_wake", .ui_name = "Touchpad Wake", .ui_helptext = "Enable or disable touchpad wake from sleep.\n" "Disabled by default to prevent random wakeups when\n" "the system is moved while sleeping.", - .default_value = 0, - .values = (const struct sm_enum_value[]) { - { "Disabled", 0 }, - { "Enabled", 1 }, - SM_ENUM_VALUE_END }, + .default_value = false, }); static struct sm_obj_form system = {