Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1666195
| From | Sebastian Reichel <sre@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v6 2/4] power: supply: twl4030-charger: move allocation of iio channel to the beginning |
| Date | 2017-06-14 22:20 +0200 |
| Message-ID | <tSmVH-1k9-11@gated-at.bofh.it> (permalink) |
| References | <tScMF-3nJ-5@gated-at.bofh.it> <tScMG-3nJ-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi,
On Wed, Jun 14, 2017 at 11:25:54AM +0200, H. Nikolaus Schaller wrote:
> This is in prepraration for EPROBE_DEFER handling because it is quite
> likely that geting the (madc) iio channel is deferred more often than
> later steps.
>
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Thanks, queued.
-- Sebastian
> drivers/power/supply/twl4030_charger.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/power/supply/twl4030_charger.c b/drivers/power/supply/twl4030_charger.c
> index 9507c24495ba..1fbbe0cc216a 100644
> --- a/drivers/power/supply/twl4030_charger.c
> +++ b/drivers/power/supply/twl4030_charger.c
> @@ -984,6 +984,12 @@ static int twl4030_bci_probe(struct platform_device *pdev)
>
> platform_set_drvdata(pdev, bci);
>
> + bci->channel_vac = devm_iio_channel_get(&pdev->dev, "vac");
> + if (IS_ERR(bci->channel_vac)) {
> + bci->channel_vac = NULL;
> + dev_warn(&pdev->dev, "could not request vac iio channel");
> + }
> +
> bci->ac = devm_power_supply_register(&pdev->dev, &twl4030_bci_ac_desc,
> NULL);
> if (IS_ERR(bci->ac)) {
> @@ -1017,12 +1023,6 @@ static int twl4030_bci_probe(struct platform_device *pdev)
> return ret;
> }
>
> - bci->channel_vac = devm_iio_channel_get(&pdev->dev, "vac");
> - if (IS_ERR(bci->channel_vac)) {
> - bci->channel_vac = NULL;
> - dev_warn(&pdev->dev, "could not request vac iio channel");
> - }
> -
> INIT_WORK(&bci->work, twl4030_bci_usb_work);
> INIT_DELAYED_WORK(&bci->current_worker, twl4030_current_worker);
>
> --
> 2.12.2
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v6 0/4] More fixes for twl4030 charger "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-06-14 11:30 +0200
[PATCH v6 2/4] power: supply: twl4030-charger: move allocation of iio channel to the beginning "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-06-14 11:30 +0200
Re: [PATCH v6 2/4] power: supply: twl4030-charger: move allocation of iio channel to the beginning Sebastian Reichel <sre@kernel.org> - 2017-06-14 22:20 +0200
[PATCH v6 1/4] power: supply: twl4030-charger: allocate iio by devm_iio_channel_get() and fix error path "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-06-14 11:30 +0200
Re: [PATCH v6 1/4] power: supply: twl4030-charger: allocate iio by devm_iio_channel_get() and fix error path Sebastian Reichel <sre@kernel.org> - 2017-06-14 22:20 +0200
[PATCH v6 3/4] power: supply: twl4030-charger: move irq allocation to just before irqs are enabled "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-06-14 11:30 +0200
Re: [PATCH v6 3/4] power: supply: twl4030-charger: move irq allocation to just before irqs are enabled Sebastian Reichel <sebastian.reichel@collabora.co.uk> - 2017-06-15 13:50 +0200
Re: [PATCH v6 0/4] More fixes for twl4030 charger "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-06-14 11:40 +0200
csiph-web