diff --git a/src/mainboard/google/puff/cfr.c b/src/mainboard/google/puff/cfr.c index 8a60ed7d53..e50af539c8 100644 --- a/src/mainboard/google/puff/cfr.c +++ b/src/mainboard/google/puff/cfr.c @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -25,6 +26,14 @@ static struct sm_obj_form system = { }, }; +static struct sm_obj_form ec = { + .ui_name = "ChromeEC Embedded Controller", + .obj_list = (const struct sm_object *[]) { + &auto_fan_control, + NULL + }, +}; + static struct sm_obj_form power = { .ui_name = "Power", .obj_list = (const struct sm_object *[]) { @@ -35,6 +44,7 @@ static struct sm_obj_form power = { static struct sm_obj_form *sm_root[] = { &system, + &ec, &power, NULL };