Skip to content
Snippets Groups Projects
Commit d10bd6cf authored by Patrice Chotard's avatar Patrice Chotard Committed by Heiko Schocher
Browse files

i2c: stm32f7_i2c: fix usage of useless local variable


Remove useless local variable "s" and use directly
function's parameter "output"

Signed-off-by: default avatarPatrice Chotard <patrice.chotard@st.com>
parent 81c48437
No related branches found
No related tags found
No related merge requests found
......@@ -640,7 +640,7 @@ static int stm32_i2c_compute_timing(struct stm32_i2c_priv *i2c_priv,
struct stm32_i2c_setup *setup,
struct stm32_i2c_timings *output)
{
struct stm32_i2c_timings *v, *_v, s;
struct stm32_i2c_timings *v, *_v;
struct list_head solutions;
int ret;
......@@ -676,16 +676,10 @@ static int stm32_i2c_compute_timing(struct stm32_i2c_priv *i2c_priv,
if (ret)
goto exit;
ret = stm32_i2c_choose_solution(setup, &solutions, &s);
ret = stm32_i2c_choose_solution(setup, &solutions, output);
if (ret)
goto exit;
output->presc = s.presc;
output->scldel = s.scldel;
output->sdadel = s.sdadel;
output->scll = s.scll;
output->sclh = s.sclh;
debug("%s: Presc: %i, scldel: %i, sdadel: %i, scll: %i, sclh: %i\n",
__func__, output->presc,
output->scldel, output->sdadel,
......
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