Skip to content
Snippets Groups Projects
Commit e093e53f authored by Nathan Chancellor's avatar Nathan Chancellor Committed by Rafael J. Wysocki
Browse files

power: avs: qcom-cpr: Avoid clang -Wsometimes-uninitialized in cpr_scale

Clang warns (trimmed for brevity):

../drivers/power/avs/qcom-cpr.c:570:13: warning: variable 'reg_mask' is
used uninitialized whenever 'if' condition is false
[-Wsometimes-uninitialized]

../drivers/power/avs/qcom-cpr.c:520:13: warning: variable 'new_uV' is
used uninitialized whenever 'if' condition is false
[-Wsometimes-uninitialized]

Due to the fact that Clang's static analysis happens before any
optimization passes are taken into account, it cannot see that both
branches in the if statement must be taken because dir cannot be
something other than UP or DOWN due to the check at the top of this
function. Change the else if condition to else to fix this false
positive.

Fixes: bf6910ab ("power: avs: Add support for CPR (Core Power Reduction)")
Link: https://github.com/ClangBuiltLinux/linux/issues/840


Signed-off-by: default avatarNathan Chancellor <natechancellor@gmail.com>
Acked-by: default avatarKevin Hilman <khilman@baylibre.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent db5a10c1
No related branches found
No related tags found
No related merge requests found
...@@ -517,7 +517,7 @@ static int cpr_scale(struct cpr_drv *drv, enum voltage_change_dir dir) ...@@ -517,7 +517,7 @@ static int cpr_scale(struct cpr_drv *drv, enum voltage_change_dir dir)
dev_dbg(drv->dev, dev_dbg(drv->dev,
"UP: -> new_uV: %d last_uV: %d perf state: %u\n", "UP: -> new_uV: %d last_uV: %d perf state: %u\n",
new_uV, last_uV, cpr_get_cur_perf_state(drv)); new_uV, last_uV, cpr_get_cur_perf_state(drv));
} else if (dir == DOWN) { } else {
if (desc->clamp_timer_interval && if (desc->clamp_timer_interval &&
error_steps < desc->down_threshold) { error_steps < desc->down_threshold) {
/* /*
...@@ -567,7 +567,7 @@ static int cpr_scale(struct cpr_drv *drv, enum voltage_change_dir dir) ...@@ -567,7 +567,7 @@ static int cpr_scale(struct cpr_drv *drv, enum voltage_change_dir dir)
/* Disable auto nack down */ /* Disable auto nack down */
reg_mask = RBCPR_CTL_SW_AUTO_CONT_NACK_DN_EN; reg_mask = RBCPR_CTL_SW_AUTO_CONT_NACK_DN_EN;
val = 0; val = 0;
} else if (dir == DOWN) { } else {
/* Restore default threshold for UP */ /* Restore default threshold for UP */
reg_mask = RBCPR_CTL_UP_THRESHOLD_MASK; reg_mask = RBCPR_CTL_UP_THRESHOLD_MASK;
reg_mask <<= RBCPR_CTL_UP_THRESHOLD_SHIFT; reg_mask <<= RBCPR_CTL_UP_THRESHOLD_SHIFT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment