[PATCH v2 2/4] ARM: shmobile: r8a7779: add VIN support
Simon Horman
horms at verge.net.au
Mon Apr 22 00:57:58 EDT 2013
On Sat, Apr 20, 2013 at 04:10:45AM +0400, Sergei Shtylyov wrote:
> Hello.
>
> On 04/20/2013 02:32 AM, Sergei Shtylyov wrote:
>
> >From: Vladimir Barinov <vladimir.barinov at cogentembedded.com>
> >
> >Add VIN clocks and platform devices for R8A7779 SoC; add function to register
> >the VIN platform devices.
> >
> >Signed-off-by: Vladimir Barinov <vladimir.barinov at cogentembedded.com>
> >[Sergei: added 'id' parameter check to r8a7779_add_vin_device(), renamed some
> >variables.]
> >Signed-off-by: Sergei Shtylyov <sergei.shtylyov at cogentembedded.com>
>
> [...]
>
> >Index: renesas/arch/arm/mach-shmobile/setup-r8a7779.c
> >===================================================================
> >--- renesas.orig/arch/arm/mach-shmobile/setup-r8a7779.c
> >+++ renesas/arch/arm/mach-shmobile/setup-r8a7779.c
> >@@ -559,6 +559,33 @@ static struct resource ether_resources[]
> > },
> > };
> >+#define R8A7779_VIN(idx) \
> >+static struct resource vin##idx##_resources[] = { \
> >+ DEFINE_RES_MEM(0xffc50000 + 0x1000 * (idx), 0x1000), \
> >+ DEFINE_RES_IRQ(gic_iid(0x5f + (idx))), \
> >+}; \
> >+ \
> >+static struct platform_device_info vin##idx##_info = { \
>
> Hm, probably should have marked this as '__initdata'... maybe
> the resources too.
That doesn't seem to be the case for other devices in
that or other shmobile files. Am I missing something
or should numerous other devices be updated?
>
> >+ .parent = &platform_bus, \
> >+ .name = "rcar_vin", \
> >+ .id = idx, \
> >+ .res = vin##idx##_resources, \
> >+ .num_res = ARRAY_SIZE(vin##idx##_resources), \
> >+ .dma_mask = DMA_BIT_MASK(32), \
> >+}
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
More information about the linux-arm-kernel
mailing list