From: Andreas Larsson <andreas@gaisler.com>
To: sparclinux@vger.kernel.org
Subject: Re: [PATCH v2] sparc: Add sparc support for platform_get_irq()
Date: Tue, 23 Oct 2012 10:16:50 +0000 [thread overview]
Message-ID: <50866E92.7040502@gaisler.com> (raw)
In-Reply-To: <1350546164-8017-1-git-send-email-andreas@gaisler.com>
On 2012-10-18 09:42, Andreas Larsson wrote:
> This adds sparc support for platform_get_irq that in the normal case use
> platform_get_resource() to get an irq. This standard approach fails for sparc as
> there are no resources of type IORESOURCE_IRQ for irqs for sparc.
>
> Cross platform drivers can then use this standard platform function and work on
> sparc instead of having to have a special case for sparc.
Any comments? Is this a good idea, or do anyone see any problems with
this change?
It would make life easier when adapting device drivers to work on a
sparc platform.
Cheers,
Andreas Larsson
> Signed-off-by: Andreas Larsson <andreas@gaisler.com>
> ---
> drivers/base/platform.c | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> index ddeca14..a17199a 100644
> --- a/drivers/base/platform.c
> +++ b/drivers/base/platform.c
> @@ -82,9 +82,15 @@ EXPORT_SYMBOL_GPL(platform_get_resource);
> */
> int platform_get_irq(struct platform_device *dev, unsigned int num)
> {
> +#ifdef CONFIG_SPARC
> + if (!dev || num >= dev->archdata.num_irqs)
> + return -ENXIO;
> + return dev->archdata.irqs[num];
> +#else
> struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num);
>
> return r ? r->start : -ENXIO;
> +#endif
> }
> EXPORT_SYMBOL_GPL(platform_get_irq);
>
next prev parent reply other threads:[~2012-10-23 10:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-18 7:42 [PATCH v2] sparc: Add sparc support for platform_get_irq() Andreas Larsson
2012-10-23 10:16 ` Andreas Larsson [this message]
2012-10-23 17:10 ` David Miller
2012-10-24 19:37 ` Sam Ravnborg
2012-10-24 19:57 ` David Miller
2012-10-25 11:57 ` andreas
2012-10-30 9:26 ` [PATCH v3] " Andreas Larsson
2012-10-30 9:26 ` Andreas Larsson
2012-11-10 3:48 ` [PATCH v2] " David Miller
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=50866E92.7040502@gaisler.com \
--to=andreas@gaisler.com \
--cc=sparclinux@vger.kernel.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.