aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-16 20:17:25 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-16 20:17:25 -0400
commit6a2a2cdd57d11ee3117539b846a45df6efbd35b1 (patch)
treeb6ab218810666a75d6612bde4d4a224118c0834c /drivers/iio
parent8e360ec82322358056786e651322085af3ef6960 (diff)
parent5698bd757d55b1bb87edd1a9744ab09c142abfc2 (diff)
Merge 3.6-rc6 into staging-next
This pulls in the staging tree fixes in 3.6-rc6 into our branch to resolve the merge issues. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/iio')
-rw-r--r--drivers/iio/adc/at91_adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/at91_adc.c b/drivers/iio/adc/at91_adc.c
index bc10091fe76c..3ed94bf80596 100644
--- a/drivers/iio/adc/at91_adc.c
+++ b/drivers/iio/adc/at91_adc.c
@@ -599,7 +599,7 @@ static int __devinit at91_adc_probe(struct platform_device *pdev)
599 st->adc_clk = devm_clk_get(&pdev->dev, "adc_op_clk"); 599 st->adc_clk = devm_clk_get(&pdev->dev, "adc_op_clk");
600 if (IS_ERR(st->adc_clk)) { 600 if (IS_ERR(st->adc_clk)) {
601 dev_err(&pdev->dev, "Failed to get the ADC clock.\n"); 601 dev_err(&pdev->dev, "Failed to get the ADC clock.\n");
602 ret = PTR_ERR(st->clk); 602 ret = PTR_ERR(st->adc_clk);
603 goto error_disable_clk; 603 goto error_disable_clk;
604 } 604 }
605 605