X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Ftarget.h;h=38bb8753cfcd4cf26bd6dd0f23f273f672087324;hb=8faa419fad72592970911b7973c61a88e785bcc0;hp=3baafbe70d09278e57beb66ce3643e8412905b25;hpb=9b6de72c2ba149ac6f3e11d6d0dd3030bf7b19f9;p=openocd.git diff --git a/src/target/target.h b/src/target/target.h index 3baafbe70d..38bb8753cf 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -27,7 +27,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ #ifndef TARGET_H @@ -485,16 +485,6 @@ int target_write_memory(struct target *target, int target_write_phys_memory(struct target *target, uint32_t address, uint32_t size, uint32_t count, const uint8_t *buffer); -/** - * Write @a count items of 4 bytes to the memory of @a target at - * the @a address given. Because it operates only on whole words, - * this should be faster than target_write_memory(). - * - * This routine is wrapper for target->type->bulk_write_memory. - */ -int target_bulk_write_memory(struct target *target, - uint32_t address, uint32_t count, const uint8_t *buffer); - /* * Write to target memory using the virtual address. *