linux/arch/arm/mach-omap2
Felipe Balbi 6f69a1815a omap2/3/4: ehci: avoid compiler error with touchbook
the early_param() call in board-omap3touchbook.c expands to:

static const char __setup_str_early_touchbook_revision[]
	__section(.init.rodata) _aligned(1) = tbr;
[...]

and we have a non-const variable being added to the
same section:

static struct ehci_hcd_omap_platform_data ehci_pdata
__section(.init.rodata);

because of that, gcc generates a section type conflict
which can (and actually should) be avoided by marking
const every variable marked with __initconst.

This patch fixes that for the ehci_hdc_omap_platform_data.

Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-03-11 09:32:03 -08:00
..
2009-11-22 10:24:33 -08:00
2009-09-24 16:23:07 -07:00
2009-12-11 17:00:43 -07:00
2010-02-15 09:27:05 -08:00
2010-02-15 10:03:33 -08:00
2010-02-15 10:03:34 -08:00
2010-02-15 10:03:34 -08:00
2010-02-03 08:48:06 -08:00
2010-02-19 15:22:17 -08:00
2010-02-23 10:57:39 -08:00
2010-02-03 08:48:06 -08:00
2009-11-22 10:24:32 -08:00
2010-02-23 10:57:40 -08:00