From: monstr@monstr.eu (Michal Simek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V2 02/19] mmc: mmci: Convert to devm functions
Date: Fri, 04 Apr 2014 12:40:46 +0200 [thread overview]
Message-ID: <533E8C2E.9040400@monstr.eu> (raw)
In-Reply-To: <1396279100-2920-3-git-send-email-ulf.hansson@linaro.org>
On 03/31/2014 05:18 PM, Ulf Hansson wrote:
> Converting to devm functions to simplify error handling in ->probe() and
> to cleanup ->remove().
>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> ---
> drivers/mmc/host/mmci.c | 51 ++++++++++++++++++-----------------------------
> 1 file changed, 19 insertions(+), 32 deletions(-)
>
> diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c
> index b0b81ac..d6f20ba 100644
> --- a/drivers/mmc/host/mmci.c
> +++ b/drivers/mmc/host/mmci.c
> @@ -13,6 +13,7 @@
> #include <linux/init.h>
> #include <linux/ioport.h>
> #include <linux/device.h>
> +#include <linux/io.h>
> #include <linux/interrupt.h>
> #include <linux/kernel.h>
> #include <linux/slab.h>
> @@ -1456,15 +1457,13 @@ static int mmci_probe(struct amba_device *dev,
> if (np)
> mmci_dt_populate_generic_pdata(np, plat);
>
> - ret = amba_request_regions(dev, DRIVER_NAME);
> - if (ret)
> - goto out;
> + if (!devm_request_mem_region(&dev->dev, dev->res.start,
> + resource_size(&dev->res), DRIVER_NAME))
> + return -ENOMEM;
here. Look below.
>
> mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
> - if (!mmc) {
> - ret = -ENOMEM;
> - goto rel_regions;
> - }
> + if (!mmc)
> + return -ENOMEM;
>
> host = mmc_priv(mmc);
> host->mmc = mmc;
> @@ -1500,8 +1499,10 @@ static int mmci_probe(struct amba_device *dev,
> dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
> host->mclk);
> }
> +
> host->phybase = dev->res.start;
> - host->base = ioremap(dev->res.start, resource_size(&dev->res));
> + host->base = devm_ioremap(&dev->dev, host->phybase,
> + resource_size(&dev->res));
Isn't it better to use devm_ioremap_resource directly?
You will get correct error return values too.
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 263 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140404/45aa4b2b/attachment.sig>
WARNING: multiple messages have this Message-ID (diff)
From: Michal Simek <monstr-pSz03upnqPeHXe+LvDLADg@public.gmane.org>
To: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Russell King <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
Linus Walleij
<linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Subject: Re: [PATCH V2 02/19] mmc: mmci: Convert to devm functions
Date: Fri, 04 Apr 2014 12:40:46 +0200 [thread overview]
Message-ID: <533E8C2E.9040400@monstr.eu> (raw)
In-Reply-To: <1396279100-2920-3-git-send-email-ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 2175 bytes --]
On 03/31/2014 05:18 PM, Ulf Hansson wrote:
> Converting to devm functions to simplify error handling in ->probe() and
> to cleanup ->remove().
>
> Signed-off-by: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> ---
> drivers/mmc/host/mmci.c | 51 ++++++++++++++++++-----------------------------
> 1 file changed, 19 insertions(+), 32 deletions(-)
>
> diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c
> index b0b81ac..d6f20ba 100644
> --- a/drivers/mmc/host/mmci.c
> +++ b/drivers/mmc/host/mmci.c
> @@ -13,6 +13,7 @@
> #include <linux/init.h>
> #include <linux/ioport.h>
> #include <linux/device.h>
> +#include <linux/io.h>
> #include <linux/interrupt.h>
> #include <linux/kernel.h>
> #include <linux/slab.h>
> @@ -1456,15 +1457,13 @@ static int mmci_probe(struct amba_device *dev,
> if (np)
> mmci_dt_populate_generic_pdata(np, plat);
>
> - ret = amba_request_regions(dev, DRIVER_NAME);
> - if (ret)
> - goto out;
> + if (!devm_request_mem_region(&dev->dev, dev->res.start,
> + resource_size(&dev->res), DRIVER_NAME))
> + return -ENOMEM;
here. Look below.
>
> mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
> - if (!mmc) {
> - ret = -ENOMEM;
> - goto rel_regions;
> - }
> + if (!mmc)
> + return -ENOMEM;
>
> host = mmc_priv(mmc);
> host->mmc = mmc;
> @@ -1500,8 +1499,10 @@ static int mmci_probe(struct amba_device *dev,
> dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
> host->mclk);
> }
> +
> host->phybase = dev->res.start;
> - host->base = ioremap(dev->res.start, resource_size(&dev->res));
> + host->base = devm_ioremap(&dev->dev, host->phybase,
> + resource_size(&dev->res));
Isn't it better to use devm_ioremap_resource directly?
You will get correct error return values too.
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]
next prev parent reply other threads:[~2014-04-04 10:40 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-31 15:18 [PATCH V2 00/19] mmc: mmci: Improve DT support Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 01/19] mmc: mmci: Convert to the mmc gpio API Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 02/19] mmc: mmci: Convert to devm functions Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-04-04 10:40 ` Michal Simek [this message]
2014-04-04 10:40 ` Michal Simek
2014-04-04 10:57 ` Ulf Hansson
2014-04-04 10:57 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 03/19] mmc: mmci: Update DT documentation Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 04/19] mmc: mmci: Add DT bindings for signal direction Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-04-03 15:47 ` Linus Walleij
2014-04-03 15:47 ` Linus Walleij
2014-04-03 20:05 ` Rob Herring
2014-04-03 20:05 ` Rob Herring
2014-04-04 11:47 ` Ulf Hansson
2014-04-04 11:47 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 05/19] mmc: mmci: Add DT bindings for feedback clock pin Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-04-03 15:48 ` Linus Walleij
2014-04-03 15:48 ` Linus Walleij
2014-03-31 15:18 ` [PATCH V2 06/19] mmc: mmci: Use the common mmc DT parser Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 07/19] ARM: ux500: Add mmci signal directions and feeback clock in DT for href Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-04-03 15:49 ` Linus Walleij
2014-04-03 15:49 ` Linus Walleij
2014-03-31 15:18 ` [PATCH V2 08/19] ARM: ux500: Convert to the common mmc DT bindings for highspeed mode Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 09/19] ARM: nomadik: " Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 10/19] ARM: u300: " Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 11/19] mmc: mmci: Mark the DT bindings for highspeed mode as deprecated Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-04-03 15:50 ` Linus Walleij
2014-04-03 15:50 ` Linus Walleij
2014-04-03 19:56 ` Rob Herring
2014-04-03 19:56 ` Rob Herring
2014-03-31 15:18 ` [PATCH V2 12/19] mmc: mmci: Enable MMC_CAP_CMD23 Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 13/19] ARM: ux500: Add the mmc capabilities flags to DT Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 14/19] ARM: ux500: Add a vmmc regulator through DT for the poped eMMC for href Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 15/19] ARM: ux500: Remove redundant board file for mmci platform data Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 16/19] mmc: mmci: Enforce DT for signal direction and feedback clock Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 17/19] mmc: mmci: Enforce mmc capabilities through DT Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 18/19] mmc: mmci: Enforce DMA configuration " Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
2014-03-31 15:18 ` [PATCH V2 19/19] mmc: mmci: Enforce max frequency " Ulf Hansson
2014-03-31 15:18 ` Ulf Hansson
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=533E8C2E.9040400@monstr.eu \
--to=monstr@monstr.eu \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.