From: ntfreak Date: Sat, 16 Jun 2007 17:35:38 +0000 (+0000) Subject: - str9xpec driver was using stricmp, changed to strcmp for posix compatibility X-Git-Tag: v0.1.0~1103 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=ee01d049089d5be099b84f8974f00f389eaea49b - str9xpec driver was using stricmp, changed to strcmp for posix compatibility git-svn-id: svn://svn.berlios.de/openocd/trunk@175 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/flash/str9xpec.c b/src/flash/str9xpec.c index f26a7632dc..e88303140d 100644 --- a/src/flash/str9xpec.c +++ b/src/flash/str9xpec.c @@ -599,37 +599,9 @@ int str9xpec_lock_device(struct flash_bank_s *bank) int str9xpec_unlock_device(struct flash_bank_s *bank) { u8 status; - //u32 chain_pos; - //jtag_device_t* dev0; - //jtag_device_t* dev1; - //jtag_device_t* dev2; - - //str9xpec_flash_controller_t *str9xpec_info = bank->driver_priv; - - //chain_pos = str9xpec_info->chain_pos; - - /* remove arm core from chain - enter turbo mode */ - - //str9xpec_set_instr(chain_pos+2, 0xD, TAP_RTI); - //jtag_execute_queue(); - - /* modify scan chain - arm9 has been removed */ - //dev0 = jtag_get_device(chain_pos); - //dev1 = jtag_get_device(chain_pos+1); - //dev2 = jtag_get_device(chain_pos+2); - //dev0->next = dev2; - //jtag_num_devices--; status = str9xpec_erase_area(bank, 0, 255); - /* exit turbo mode via TLR */ - //str9xpec_set_instr(chain_pos, ISC_NOOP, TAP_TLR); - //jtag_execute_queue(); - - /* restore previous scan chain */ - //dev0->next = dev1; - //jtag_num_devices++; - return status; } @@ -1128,7 +1100,7 @@ int str9xpec_handle_flash_options_cmap_command(struct command_context_s *cmd_ctx str9xpec_info = bank->driver_priv; - if (stricmp(args[1], "bank1") == 0) + if (strcmp(args[1], "bank1") == 0) { buf_set_u32(str9xpec_info->options, STR9XPEC_OPT_CSMAPBIT, 1, 1); } @@ -1160,7 +1132,7 @@ int str9xpec_handle_flash_options_lvdthd_command(struct command_context_s *cmd_c str9xpec_info = bank->driver_priv; - if (stricmp(args[1], "2.7v") == 0) + if (strcmp(args[1], "2.7v") == 0) { buf_set_u32(str9xpec_info->options, STR9XPEC_OPT_LVDTHRESBIT, 1, 1); } @@ -1192,7 +1164,7 @@ int str9xpec_handle_flash_options_lvdsel_command(struct command_context_s *cmd_c str9xpec_info = bank->driver_priv; - if (stricmp(args[1], "vdd_vddq") == 0) + if (strcmp(args[1], "vdd_vddq") == 0) { buf_set_u32(str9xpec_info->options, STR9XPEC_OPT_LVDSELBIT, 1, 1); } @@ -1224,7 +1196,7 @@ int str9xpec_handle_flash_options_lvdwarn_command(struct command_context_s *cmd_ str9xpec_info = bank->driver_priv; - if (stricmp(args[1], "vdd_vddq") == 0) + if (strcmp(args[1], "vdd_vddq") == 0) { buf_set_u32(str9xpec_info->options, STR9XPEC_OPT_LVDWARNBIT, 1, 1); }