Commit b0fc3f1d authored by Tang Bin's avatar Tang Bin Committed by Jonathan Cameron

iio: adc: twl6030-gpadc: Use the defined variable to clean code

Use the defined variable "dev" to make the code cleaner.
Signed-off-by: default avatarTang Bin <tangbin@cmss.chinamobile.com>
Link: https://lore.kernel.org/r/20210823095921.16828-1-tangbin@cmss.chinamobile.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 05009850
...@@ -900,7 +900,7 @@ static int twl6030_gpadc_probe(struct platform_device *pdev) ...@@ -900,7 +900,7 @@ static int twl6030_gpadc_probe(struct platform_device *pdev)
ret = pdata->calibrate(gpadc); ret = pdata->calibrate(gpadc);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "failed to read calibration registers\n"); dev_err(dev, "failed to read calibration registers\n");
return ret; return ret;
} }
...@@ -914,14 +914,14 @@ static int twl6030_gpadc_probe(struct platform_device *pdev) ...@@ -914,14 +914,14 @@ static int twl6030_gpadc_probe(struct platform_device *pdev)
ret = twl6030_gpadc_enable_irq(TWL6030_GPADC_RT_SW1_EOC_MASK); ret = twl6030_gpadc_enable_irq(TWL6030_GPADC_RT_SW1_EOC_MASK);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "failed to enable GPADC interrupt\n"); dev_err(dev, "failed to enable GPADC interrupt\n");
return ret; return ret;
} }
ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, TWL6030_GPADCS, ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, TWL6030_GPADCS,
TWL6030_REG_TOGGLE1); TWL6030_REG_TOGGLE1);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "failed to enable GPADC module\n"); dev_err(dev, "failed to enable GPADC module\n");
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment