From: Øyvind Harboe Date: Tue, 15 Jun 2010 22:08:58 +0000 (+0200) Subject: tms470: -Wshadow warning fixes X-Git-Tag: v0.5.0-rc1~600 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=72d227cd5e32a6b141026e31ca4702cd69c79e62 tms470: -Wshadow warning fixes Signed-off-by: Øyvind Harboe --- diff --git a/src/flash/nor/tms470.c b/src/flash/nor/tms470.c index 343c43ed87..2f02e5d77c 100644 --- a/src/flash/nor/tms470.c +++ b/src/flash/nor/tms470.c @@ -1215,7 +1215,7 @@ static int tms470_protect_check(struct flash_bank *bank) /* ---------------------------------------------------------------------- */ -static int tms470_info(struct flash_bank *bank, char *buf, int buf_size) +static int get_tms470_info(struct flash_bank *bank, char *buf, int buf_size) { int used = 0; struct tms470_flash_bank *tms470_info = bank->driver_priv; @@ -1275,5 +1275,5 @@ struct flash_driver tms470_flash = { .auto_probe = tms470_auto_probe, .erase_check = tms470_erase_check, .protect_check = tms470_protect_check, - .info = tms470_info, + .info = get_tms470_info, };