From 07f1027c0d9692efbabcbf380d7950354c3f4e7e Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Tue, 3 Jun 2003 08:02:53 +0000 Subject: [PATCH] 2003-06-03 Marcel Telka * include/jtag.h (detectflash, flashmem, flashmsbin): Declarations moved to include module, file brux/flash.h. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@460 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/ChangeLog | 5 +++++ jtag/include/jtag.h | 7 ++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 9c4b9206..28243a87 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,8 @@ +2003-06-03 Marcel Telka + + * include/jtag.h (detectflash, flashmem, flashmsbin): Declarations moved to include module, + file brux/flash.h. + 2003-06-03 Marcel Telka * src/cmd/cable.c (cmd_cable_run): Added bus deallocation. diff --git a/jtag/include/jtag.h b/jtag/include/jtag.h index f9347cc8..75b4df06 100644 --- a/jtag/include/jtag.h +++ b/jtag/include/jtag.h @@ -28,6 +28,8 @@ #include #include +#include + #include "chain.h" #include "bus.h" #include "part.h" @@ -43,9 +45,4 @@ void discovery( chain_t *chain, const char *filename ); void readmem( bus_t *bus, FILE *f, uint32_t addr, uint32_t len ); -void detectflash( bus_t *bus ); - -void flashmem( bus_t *bus, FILE *f, uint32_t addr ); -void flashmsbin( bus_t *bus, FILE *f ); - #endif /* JTAG_H */