From cbf4760e15d217c0a83e65f13bddfcbfad7d2fec Mon Sep 17 00:00:00 2001 From: Andreas Fritiofson Date: Sat, 21 Sep 2013 18:39:01 +0200 Subject: flash/nor: Make info function optional Remove lots of no-op or dummy info function implementations and check if it's implemented before invoking it. Change-Id: I2144dad6a84a80359bb13a8a29a4614387e4c135 Signed-off-by: Andreas Fritiofson Reviewed-on: http://openocd.zylin.com/1642 Tested-by: jenkins Reviewed-by: Spencer Oliver --- src/flash/nor/str9xpec.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/flash/nor/str9xpec.c') diff --git a/src/flash/nor/str9xpec.c b/src/flash/nor/str9xpec.c index da6c83e..e08495d 100644 --- a/src/flash/nor/str9xpec.c +++ b/src/flash/nor/str9xpec.c @@ -760,12 +760,6 @@ static int str9xpec_erase_check(struct flash_bank *bank) return str9xpec_blank_check(bank, 0, bank->num_sectors - 1); } -static int get_str9xpec_info(struct flash_bank *bank, char *buf, int buf_size) -{ - snprintf(buf, buf_size, "str9xpec flash driver info"); - return ERROR_OK; -} - COMMAND_HANDLER(str9xpec_handle_flash_options_read_command) { uint8_t status; @@ -1215,5 +1209,4 @@ struct flash_driver str9xpec_flash = { .auto_probe = str9xpec_probe, .erase_check = str9xpec_erase_check, .protect_check = str9xpec_protect_check, - .info = get_str9xpec_info, }; -- cgit v1.1