arm_adi_v5: Remove unused is_swd flag
Not clear what it was supposed to be used for. It probably shouldn't. Change-Id: Ife1d833e59ba80f93876447d752a0ca7e7b57b0f Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/3143 Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>__archive__
parent
dc574aa1da
commit
59003ee2a1
|
@ -259,8 +259,6 @@ static int swd_run(struct adiv5_dap *dap)
|
|||
}
|
||||
|
||||
const struct dap_ops swd_dap_ops = {
|
||||
.is_swd = true,
|
||||
|
||||
.queue_dp_read = swd_queue_dp_read,
|
||||
.queue_dp_write = swd_queue_dp_write,
|
||||
.queue_ap_read = swd_queue_ap_read,
|
||||
|
|
|
@ -244,11 +244,6 @@ struct adiv5_dap {
|
|||
* available until run().
|
||||
*/
|
||||
struct dap_ops {
|
||||
/** If the DAP transport isn't SWD, it must be JTAG. Upper level
|
||||
* code may need to care about the difference in some cases.
|
||||
*/
|
||||
bool is_swd;
|
||||
|
||||
/** DP register read. */
|
||||
int (*queue_dp_read)(struct adiv5_dap *dap, unsigned reg,
|
||||
uint32_t *data);
|
||||
|
|
Loading…
Reference in New Issue