From: antoine.tenart@free-electrons.com (Antoine Tenart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] mfd: add support for Allwinner SoCs ADC
Date: Tue, 28 Jun 2016 10:51:54 +0200 [thread overview]
Message-ID: <20160628085154.GE4472@kwain> (raw)
In-Reply-To: <1467101897-15946-2-git-send-email-quentin.schulz@free-electrons.com>
Hello,
On Tue, Jun 28, 2016 at 10:18:15AM +0200, Quentin Schulz wrote:
> diff --git a/drivers/mfd/sunxi-gpadc-mfd.c b/drivers/mfd/sunxi-gpadc-mfd.c
> new file mode 100644
> index 0000000..710e297
> --- /dev/null
> +++ b/drivers/mfd/sunxi-gpadc-mfd.c
> @@ -0,0 +1,188 @@
[...]
> + if (of_device_is_compatible(pdev->dev.of_node,
> + "allwinner,sun4i-a10-ts"))
> + ret = mfd_add_devices(sunxi_gpadc_mfd_dev->dev, 0,
> + sun4i_gpadc_mfd_cells,
> + ARRAY_SIZE(sun4i_gpadc_mfd_cells), NULL,
> + 0, NULL);
> + else if (of_device_is_compatible(pdev->dev.of_node,
> + "allwinner,sun5i-a13-ts"))
> + ret = mfd_add_devices(sunxi_gpadc_mfd_dev->dev, 0,
> + sun5i_gpadc_mfd_cells,
> + ARRAY_SIZE(sun5i_gpadc_mfd_cells), NULL,
> + 0, NULL);
> + else if (of_device_is_compatible(pdev->dev.of_node,
> + "allwinner,sun6i-a31-ts"))
> + ret = mfd_add_devices(sunxi_gpadc_mfd_dev->dev, 0,
> + sun6i_gpadc_mfd_cells,
> + ARRAY_SIZE(sun6i_gpadc_mfd_cells), NULL,
> + 0, NULL);
> +
> + if (ret) {
> + dev_err(&pdev->dev, "failed to add MFD devices: %d\n", ret);
> + regmap_del_irq_chip(irq, sunxi_gpadc_mfd_dev->regmap_irqc);
> + mfd_remove_devices(&pdev->dev);
You don't need to explicitly call mfd_remove_devices() when
mfd_add_devices() fails. See:
http://lxr.free-electrons.com/source/drivers/mfd/mfd-core.c#L298
> + return ret;
> + }
Thanks,
Antoine
--
Antoine T?nart, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160628/a0e72c12/attachment.sig>
next prev parent reply other threads:[~2016-06-28 8:51 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-28 8:45 [PATCH 0/3] add support for Allwinner SoCs ADC Quentin Schulz
2016-06-28 8:18 ` [PATCH 1/3] mfd: " Quentin Schulz
2016-06-28 8:30 ` Antoine Tenart
2016-06-28 8:51 ` Antoine Tenart [this message]
2016-07-03 11:17 ` Jonathan Cameron
2016-07-03 16:49 ` Lars-Peter Clausen
2016-07-03 17:38 ` Guenter Roeck
2016-06-28 8:18 ` [PATCH 2/3] iio: adc: " Quentin Schulz
2016-06-28 8:32 ` Antoine Tenart
2016-07-03 11:54 ` Jonathan Cameron
2016-07-03 12:48 ` Jonathan Cameron
2016-07-03 15:43 ` Guenter Roeck
2016-07-04 7:26 ` Quentin Schulz
2016-07-04 16:29 ` Guenter Roeck
2016-07-05 7:40 ` Quentin Schulz
2016-06-28 8:18 ` [PATCH 3/3] hwmon: iio_hwmon: defer probe when no channel is found Quentin Schulz
2016-06-30 3:47 ` [3/3] " Guenter Roeck
2016-06-30 13:59 ` Jonathan Cameron
2016-06-30 14:49 ` Lars-Peter Clausen
2016-06-30 14:51 ` Guenter Roeck
2016-07-03 10:47 ` Jonathan Cameron
2016-07-03 15:48 ` Guenter Roeck
2016-06-29 3:28 ` [PATCH 0/3] add support for Allwinner SoCs ADC Chen-Yu Tsai
2016-07-01 9:45 ` Quentin Schulz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160628085154.GE4472@kwain \
--to=antoine.tenart@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).