[PATCH 2/7] mfd: syscon: Don't call request_iomem_region()
Sascha Hauer
s.hauer at pengutronix.de
Thu Jul 14 22:53:17 PDT 2016
Alexander,
Applying 1/7 and this one should make clps711x work again, right?
Sascha
On Wed, Jul 13, 2016 at 11:11:00PM -0700, Andrey Smirnov wrote:
> On platforms that mix dedicated IP block register space with
> miscellaneous registers it is necessary to share register window between
> syscon and dedicated IP block driver. Calling request_iomem_region()
> implies exclusive ownership of the region, which, in the case above
> could not happen.
>
> This change also makes this driver's behaviour to that of its Linux
> kernel counterpart.
>
> Suggested-by: Sascha Hauer <s.hauer at pengutronix.de>
> Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
> ---
> drivers/mfd/syscon.c | 6 ------
> 1 file changed, 6 deletions(-)
>
> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index 9589a03..ac46122 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -76,12 +76,6 @@ static int syscon_probe(struct device_d *dev)
> return PTR_ERR(res);
> }
>
> - res = request_iomem_region(dev_name(dev), res->start, res->end);
> - if (IS_ERR(res)) {
> - free(syscon);
> - return PTR_ERR(res);
> - }
> -
> syscon->base = (void __iomem *)res->start;
> dev->priv = syscon;
>
> --
> 2.5.5
>
>
> _______________________________________________
> barebox mailing list
> barebox at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the barebox
mailing list