X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fflash%2Fnor%2Fstr9x.c;h=7d93b187dffa95360bb78c15266921a3fe5ce0a4;hp=be8c00b698c7bfc47c0f51326a5f952c52a30acc;hb=cbf4760e15d217c0a83e65f13bddfcbfad7d2fec;hpb=08d4411b59dd8bd0e7d8009003b71d23acbf6eee diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c index be8c00b698..7d93b187df 100644 --- a/src/flash/nor/str9x.c +++ b/src/flash/nor/str9x.c @@ -606,12 +606,6 @@ COMMAND_HANDLER(str9x_handle_part_id_command) } #endif -static int get_str9x_info(struct flash_bank *bank, char *buf, int buf_size) -{ - snprintf(buf, buf_size, "str9x flash driver info"); - return ERROR_OK; -} - COMMAND_HANDLER(str9x_handle_flash_config_command) { struct target *target = NULL; @@ -686,5 +680,4 @@ struct flash_driver str9x_flash = { .auto_probe = str9x_probe, .erase_check = default_flash_blank_check, .protect_check = str9x_protect_check, - .info = get_str9x_info, };