Skip to content

Commit

Permalink
Input: imx6ul_tsc - propagate the errors
Browse files Browse the repository at this point in the history
imx6ul_adc_init() may fail in two cases, so we should better
propagate the errors and make sure that the callers of
this function also check and propagate the errors accordingly.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
  • Loading branch information
Fabio Estevam authored and dtor committed Sep 19, 2015
1 parent 46b018f commit 6cc527b
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions drivers/input/touchscreen/imx6ul_tsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ struct imx6ul_tsc {
* TSC module need ADC to get the measure value. So
* before config TSC, we should initialize ADC module.
*/
static void imx6ul_adc_init(struct imx6ul_tsc *tsc)
static int imx6ul_adc_init(struct imx6ul_tsc *tsc)
{
int adc_hc = 0;
int adc_gc;
Expand Down Expand Up @@ -122,17 +122,23 @@ static void imx6ul_adc_init(struct imx6ul_tsc *tsc)

timeout = wait_for_completion_timeout
(&tsc->completion, ADC_TIMEOUT);
if (timeout == 0)
if (timeout == 0) {
dev_err(tsc->dev, "Timeout for adc calibration\n");
return -ETIMEDOUT;
}

adc_gs = readl(tsc->adc_regs + REG_ADC_GS);
if (adc_gs & ADC_CALF)
if (adc_gs & ADC_CALF) {
dev_err(tsc->dev, "ADC calibration failed\n");
return -EINVAL;
}

/* TSC need the ADC work in hardware trigger */
adc_cfg = readl(tsc->adc_regs + REG_ADC_CFG);
adc_cfg |= ADC_HARDWARE_TRIGGER;
writel(adc_cfg, tsc->adc_regs + REG_ADC_CFG);

return 0;
}

/*
Expand Down Expand Up @@ -188,11 +194,17 @@ static void imx6ul_tsc_set(struct imx6ul_tsc *tsc)
writel(start, tsc->tsc_regs + REG_TSC_FLOW_CONTROL);
}

static void imx6ul_tsc_init(struct imx6ul_tsc *tsc)
static int imx6ul_tsc_init(struct imx6ul_tsc *tsc)
{
imx6ul_adc_init(tsc);
int err;

err = imx6ul_adc_init(tsc);
if (err)
return err;
imx6ul_tsc_channel_config(tsc);
imx6ul_tsc_set(tsc);

return 0;
}

static void imx6ul_tsc_disable(struct imx6ul_tsc *tsc)
Expand Down Expand Up @@ -311,9 +323,7 @@ static int imx6ul_tsc_open(struct input_dev *input_dev)
return err;
}

imx6ul_tsc_init(tsc);

return 0;
return imx6ul_tsc_init(tsc);
}

static void imx6ul_tsc_close(struct input_dev *input_dev)
Expand Down Expand Up @@ -491,7 +501,7 @@ static int __maybe_unused imx6ul_tsc_resume(struct device *dev)
goto out;
}

imx6ul_tsc_init(tsc);
retval = imx6ul_tsc_init(tsc);
}

out:
Expand Down

0 comments on commit 6cc527b

Please sign in to comment.