X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Ftarget_type.h;h=3a3de7a266878a8b72a4bb2e7390f88198defa73;hb=b8c44b3fd7265ff7c5c057bf5d4573344706a55e;hp=277607e29e6823427078f104a5f98f4beb6672fd;hpb=549d9bc72cbca3ba352e6b4bcd6e31d9fd9a0bc7;p=openocd.git diff --git a/src/target/target_type.h b/src/target/target_type.h index 277607e29e..3a3de7a266 100644 --- a/src/target/target_type.h +++ b/src/target/target_type.h @@ -21,7 +21,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_TYPE_H @@ -88,7 +88,6 @@ struct target_type { * reset run; halt */ int (*deassert_reset)(struct target *target); - int (*soft_reset_halt_imp)(struct target *target); int (*soft_reset_halt)(struct target *target); /** @@ -108,16 +107,13 @@ struct target_type { * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit) * count: number of items of */ - int (*read_memory_imp)(struct target *target, uint32_t address, - uint32_t size, uint32_t count, uint8_t *buffer); + /** * Target memory read callback. Do @b not call this function * directly, use target_read_memory() instead. */ int (*read_memory)(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer); - int (*write_memory_imp)(struct target *target, uint32_t address, - uint32_t size, uint32_t count, const uint8_t *buffer); /** * Target memory write callback. Do @b not call this function * directly, use target_write_memory() instead.