From mboxrd@z Thu Jan 1 00:00:00 1970 From: wxt@rock-chips.com (Caesar Wang) Date: Wed, 27 Jul 2016 10:11:30 +0800 Subject: [PATCH v2 1/4] iio: adc: rockchip_saradc: reset saradc controller before programming it In-Reply-To: <579815B2.5010205@roeck-us.net> References: <1469535195-5227-1-git-send-email-wxt@rock-chips.com> <57976814.3040605@roeck-us.net> <579777F4.2090002@rock-chips.com> <20160726170023.GA6590@roeck-us.net> <57980362.3000406@rock-chips.com> <579815B2.5010205@roeck-us.net> Message-ID: <57981852.1040006@rock-chips.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 2016?07?27? 10:00, Guenter Roeck wrote: > On 07/26/2016 05:42 PM, Caesar Wang wrote: >> >> On 2016?07?27? 01:00, Guenter Roeck wrote: >>> On Tue, Jul 26, 2016 at 10:47:16PM +0800, Caesar Wang wrote: >>>> On 2016?07?26? 21:39, Guenter Roeck wrote: >>>>>> static int rockchip_saradc_probe(struct platform_device *pdev) >>>>>> { >>>>>> struct rockchip_saradc *info = NULL; >>>>>> @@ -218,6 +231,21 @@ static int rockchip_saradc_probe(struct >>>>>> platform_device *pdev) >>>>>> if (IS_ERR(info->regs)) >>>>>> return PTR_ERR(info->regs); >>>>>> >>>>>> + /* >>>>>> + * The reset should be an optional property, as it should work >>>>>> + * with old devicetrees as well >>>>>> + */ >>>>>> + info->reset = devm_reset_control_get_optional(&pdev->dev, >>>>>> + "saradc-apb"); >>>>> Does anyone know what the _optional API is for ? It seems to be >>>>> exactly >>>>> the same >>>>> as devm_reset_control_get(). >>>> ? >>>> As far as I see, the difference is WARN_ON(1) >>>> when is not defined. >>>> >>>> >>>> The _optional functions were introduced by the following commit: >>>> >>>> ----------------->8----------------- >>>> commit b424080a9e086e683ad5fdc624a7cf3c024e0c0f >>>> Author: Philipp Zabel