From: Macpaul Lin Date: Sun, 1 May 2011 22:17:29 +0000 (+0000) Subject: ftsmc020: fix relocation X-Git-Tag: v2011.06-rc1~35 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f194f6ba5bebb13d2f3f90513d224b95c86ddc5f;p=oweals%2Fu-boot.git ftsmc020: fix relocation Avoid relocation problem by fix global declaration. Signed-off-by: Macpaul Lin --- diff --git a/drivers/mtd/ftsmc020.c b/drivers/mtd/ftsmc020.c index b027685b11..ddeb3a4529 100644 --- a/drivers/mtd/ftsmc020.c +++ b/drivers/mtd/ftsmc020.c @@ -27,12 +27,10 @@ struct ftsmc020_config { unsigned int timing; }; -static struct ftsmc020_config config[] = CONFIG_SYS_FTSMC020_CONFIGS; - -static struct ftsmc020 *smc = (struct ftsmc020 *)CONFIG_FTSMC020_BASE; - static void ftsmc020_setup_bank(unsigned int bank, struct ftsmc020_config *cfg) { + struct ftsmc020 *smc = (struct ftsmc020 *)CONFIG_FTSMC020_BASE; + if (bank > 3) { printf("bank # %u invalid\n", bank); return; @@ -44,6 +42,7 @@ static void ftsmc020_setup_bank(unsigned int bank, struct ftsmc020_config *cfg) void ftsmc020_init(void) { + struct ftsmc020_config config[] = CONFIG_SYS_FTSMC020_CONFIGS; int i; for (i = 0; i < ARRAY_SIZE(config); i++)