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 */