[PATCH] sama5d3x: fix AT91_SMC_CS offset stride
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Thu May 29 05:11:41 PDT 2014
On May 29, 2014, at 5:55 PM, Matteo Fortini <matteo.fortini at gmail.com> wrote:
>
> Acked-by: Bo Shen <voice.shen at atmel.com>
> ---
> arch/arm/mach-at91/sam9_smc.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/mach-at91/sam9_smc.c b/arch/arm/mach-at91/sam9_smc.c
> index a137da4..65c4558 100644
> --- a/arch/arm/mach-at91/sam9_smc.c
> +++ b/arch/arm/mach-at91/sam9_smc.c
> @@ -16,7 +16,11 @@
>
> #include <mach/at91sam9_smc.h>
>
> +#ifdef CONFIG_ARCH_SAMA5D3
> +#define AT91_SMC_CS(id, n) (smc_base_addr[id] + ((n) * 0x14))
> +#else
> #define AT91_SMC_CS(id, n) (smc_base_addr[id] + ((n) * 0x10))
> +#endif
NACK no ifdef
this need to be runtime
and you need to put our SOB
>
> static void __iomem *smc_base_addr[2];
>
> --
> 2.0.0.rc2
>
>
> _______________________________________________
> barebox mailing list
> barebox at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
More information about the barebox
mailing list