ooh.. a new cpufreq governor i found! :) add it to a known list.

SVN revision: 80399
This commit is contained in:
Carsten Haitzler 2012-12-06 22:13:15 +00:00
parent 104761a441
commit b2a6b20336
1 changed files with 6 additions and 0 deletions

View File

@ -229,6 +229,8 @@ _button_cb_mouse_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED_
e_menu_item_label_set(mi, _("Automatic"));
else if (!strcmp(l->data, "conservative"))
e_menu_item_label_set(mi, _("Lower Power Automatic"));
else if (!strcmp(l->data, "interactive"))
e_menu_item_label_set(mi, _("Automatic Interactive"));
else if (!strcmp(l->data, "powersave"))
e_menu_item_label_set(mi, _("Minimum Speed"));
else if (!strcmp(l->data, "performance"))
@ -261,6 +263,8 @@ _button_cb_mouse_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED_
e_menu_item_label_set(mi, _("Automatic"));
else if (!strcmp(l->data, "conservative"))
e_menu_item_label_set(mi, _("Lower Power Automatic"));
else if (!strcmp(l->data, "interactive"))
e_menu_item_label_set(mi, _("Automatic Interactive"));
else if (!strcmp(l->data, "powersave"))
e_menu_item_label_set(mi, _("Minimum Speed"));
else if (!strcmp(l->data, "performance"))
@ -965,6 +969,8 @@ _cpufreq_event_cb_powersave(void *data __UNUSED__, int type, void *event)
has_conservative = EINA_TRUE;
else if (!strcmp(l->data, "powersave"))
has_powersave = EINA_TRUE;
else if (!strcmp(l->data, "interactive"))
has_powersave = EINA_TRUE;
}
switch (ev->mode)