X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Fdrivers%2Fat91rm9200.c;h=f823ab64b34f79e02b7ec2a28a1f2e73ea44d662;hp=3bba368fab6f5335027493146421fa29bbe7cd82;hb=191a5736c202dfb784e86a8190edc64e80dc62e5;hpb=de0130a0aad83c1ef692ee4d68ab996a8668424d diff --git a/src/jtag/drivers/at91rm9200.c b/src/jtag/drivers/at91rm9200.c index 3bba368fab..f823ab64b3 100644 --- a/src/jtag/drivers/at91rm9200.c +++ b/src/jtag/drivers/at91rm9200.c @@ -15,7 +15,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. * ***************************************************************************/ #ifdef HAVE_CONFIG_H @@ -115,7 +115,6 @@ static int at91rm9200_read(void); static void at91rm9200_write(int tck, int tms, int tdi); static void at91rm9200_reset(int trst, int srst); -static int at91rm9200_speed(int speed); static int at91rm9200_init(void); static int at91rm9200_quit(void); @@ -163,12 +162,6 @@ static void at91rm9200_reset(int trst, int srst) pio_base[device->SRST_PIO + PIO_CODR] = device->SRST_MASK; } -static int at91rm9200_speed(int speed) -{ - - return ERROR_OK; -} - COMMAND_HANDLER(at91rm9200_handle_device_command) { if (CMD_ARGC == 0) @@ -196,7 +189,6 @@ static const struct command_registration at91rm9200_command_handlers[] = { struct jtag_interface at91rm9200_interface = { .name = "at91rm9200", .execute_queue = bitbang_execute_queue, - .speed = at91rm9200_speed, .commands = at91rm9200_command_handlers, .init = at91rm9200_init, .quit = at91rm9200_quit,