2003-06-03 Marcel Telka <marcel@telka.sk>

* include/cfi.h (detect_cfi): Macro removed.
	* src/flash.c (flashcheck): Renamed detect_cfi to cfi_detect.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@470 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent ec8f245b46
commit 62fba42f60

@ -1,3 +1,8 @@
2003-06-03 Marcel Telka <marcel@telka.sk>
* include/cfi.h (detect_cfi): Macro removed.
* src/flash.c (flashcheck): Renamed detect_cfi to cfi_detect.
2003-06-03 Marcel Telka <marcel@telka.sk>
* src/Makefile.am (jtag_LDADD): Added libbrux twice to resolve dependencies.

@ -27,6 +27,4 @@
#include <brux/cfi.h>
#define detect_cfi cfi_detect
#endif /* CFI_H */

@ -86,7 +86,7 @@ flashcheck( bus_t *bus, cfi_array_t **cfi_array )
printf( _("Note: Supported configuration is 2 x 16 bit or 1 x 16 bit only\n") );
*cfi_array = NULL;
if (detect_cfi( bus, 0, cfi_array )) {
if (cfi_detect( bus, 0, cfi_array )) {
cfi_array_free( *cfi_array );
printf( _("Flash not found!\n") );
return;

Loading…
Cancel
Save