power: Remove unused arg from power_hint_override/set_interactive_override

Change-Id: If45b59915022b563d4c5c9bf454b02b431a97833
This commit is contained in:
Rashed Abdel-Tawab
2017-12-31 01:21:40 +02:00
committed by Michael Bestas
parent 069801dcb7
commit cd6e36030a
7 changed files with 13 additions and 16 deletions

View File

@@ -84,8 +84,7 @@ static bool is_target_SDM630()
return is_target_SDM630;
}
int power_hint_override(struct power_module *module, power_hint_t hint,
void *data)
int power_hint_override(power_hint_t hint, void *data)
{
switch(hint) {
@@ -100,7 +99,7 @@ int power_hint_override(struct power_module *module, power_hint_t hint,
return HINT_NONE;
}
int set_interactive_override(struct power_module *module, int on)
int set_interactive_override(int on)
{
char governor[80];
char tmp_str[NODE_MAX];