From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: linux-sh@vger.kernel.org
Subject: Re: [PATCH 05/12] ARM: shmobile: r8a7778: add HSPI support
Date: Thu, 16 May 2013 15:07:21 +0000 [thread overview]
Message-ID: <5194F629.8050503@cogentembedded.com> (raw)
In-Reply-To: <87bo8bwg3b.wl%kuninori.morimoto.gx@renesas.com>
On 16-05-2013 11:15, Kuninori Morimoto wrote:
> Signed-off-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
[...]
> diff --git a/arch/arm/mach-shmobile/setup-r8a7778.c b/arch/arm/mach-shmobile/setup-r8a7778.c
> index 87b74a5..8f011cb 100644
> --- a/arch/arm/mach-shmobile/setup-r8a7778.c
> +++ b/arch/arm/mach-shmobile/setup-r8a7778.c
> @@ -198,6 +198,29 @@ void __init r8a7778_add_i2c_device(int id)
> i2c_resources + (2 * id), 2);
> }
>
> +/* HSPI */
> +static struct resource hspi_resources[] = {
You can annotate this with '__initdata'.
> + /* HSPI0 */
> + DEFINE_RES_MEM(0xfffc7000, 0x18),
> + DEFINE_RES_IRQ(gic_iid(0x5f)),
> + /* HSPI1 */
> + DEFINE_RES_MEM(0xfffc8000, 0x18),
> + DEFINE_RES_IRQ(gic_iid(0x74)),
> + /* HSPI2 */
> + DEFINE_RES_MEM(0xfffc6000, 0x18),
> + DEFINE_RES_IRQ(gic_iid(0x75)),
> +};
> +
> +void __init r8a7778_add_hspi_device(int id)
> +{
> + BUG_ON(id < 0 || id > 2);
> +
> + platform_device_register_simple(
> + "sh-hspi", id,
> + hspi_resources + (2 * id), 2);
> +}
> +
> +
WBR, Sergei
prev parent reply other threads:[~2013-05-16 15:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-16 7:15 [PATCH 05/12] ARM: shmobile: r8a7778: add HSPI support Kuninori Morimoto
2013-05-16 15:07 ` Sergei Shtylyov [this message]
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=5194F629.8050503@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=linux-sh@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.