From e00d4a85fb623f888a6ce92d2349f83de453d677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnim=20L=C3=A4uger?= Date: Wed, 6 May 2009 20:09:24 +0000 Subject: [PATCH] fix typo in S29GLxxxN git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1574 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/ChangeLog | 4 ++++ jtag/src/flash/amd.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/jtag/ChangeLog b/jtag/ChangeLog index d551db14..814c12b9 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,7 @@ +2009-05-06 Arnim Laeuger + + * src/flash/amd.c: fix typo in S29GLxxxN + 2009-04-24 Rutger Hofman * src/flash/amd_flash.c, src/bus/ejtag.c, src/bus/ejtag_dma.c: fix erroneous reference to global variable 'bus' to be to a local variable/parameter. diff --git a/jtag/src/flash/amd.c b/jtag/src/flash/amd.c index 28fb0da6..719027ac 100644 --- a/jtag/src/flash/amd.c +++ b/jtag/src/flash/amd.c @@ -299,7 +299,7 @@ amd_flash_print_info( cfi_array_t *cfi_array ) break; case 0x227E: /* 16-bit mode */ case 0x007E: /* 8-bit mode */ - printf( "S92GLxxxN" ); + printf( "S29GLxxxN" ); break; default: printf ( _("Unknown (ID 0x%04x)"), cid ); @@ -576,7 +576,7 @@ flash_driver_t amd_32_flash_driver = { flash_driver_t amd_16_flash_driver = { 2, /* buswidth */ N_("AMD/Fujitsu Standard Command Set"), - N_("supported: AMD 29LV800B, S92GLxxxN; MX29LV640B; 1x16 Bit"), + N_("supported: AMD 29LV800B, S29GLxxxN; MX29LV640B; 1x16 Bit"), amd_flash_autodetect16, amd_flash_print_info, amd_flash_erase_block, @@ -588,7 +588,7 @@ flash_driver_t amd_16_flash_driver = { flash_driver_t amd_8_flash_driver = { 1, /* buswidth */ N_("AMD/Fujitsu Standard Command Set"), - N_("supported: AMD 29LV160, AMD 29LV065D, AMD 29LV040B, S92GLxxxN; 1x8 Bit"), + N_("supported: AMD 29LV160, AMD 29LV065D, AMD 29LV040B, S29GLxxxN; 1x8 Bit"), amd_flash_autodetect8, amd_flash_print_info, amd_flash_erase_block,