rlink: fix overzealous sed
Fix an instance where my cleanup when awry.
This commit is contained in:
parent
a502676df7
commit
6731968873
|
@ -577,8 +577,8 @@ dtc_run_download(
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct dtc_reply_queue_entry {
|
struct dtc_reply_queue_entry {
|
||||||
struct dtc_reply_queue_entry_s *next;
|
struct dtc_reply_queue_entry *next;
|
||||||
jtag_struct command *cmd; /* the command that resulted in this entry */
|
struct jtag_command *cmd; /* the command that resulted in this entry */
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
uint8_t *buffer; /* the scan buffer */
|
uint8_t *buffer; /* the scan buffer */
|
||||||
|
@ -637,7 +637,7 @@ dtc_queue_enqueue_reply(
|
||||||
int size,
|
int size,
|
||||||
int offset,
|
int offset,
|
||||||
int length,
|
int length,
|
||||||
jtag_struct command *cmd
|
struct jtag_command *cmd
|
||||||
) {
|
) {
|
||||||
struct dtc_reply_queue_entry *rq_entry;
|
struct dtc_reply_queue_entry *rq_entry;
|
||||||
|
|
||||||
|
@ -1090,7 +1090,7 @@ void rlink_reset(int trst, int srst)
|
||||||
static
|
static
|
||||||
int
|
int
|
||||||
rlink_scan(
|
rlink_scan(
|
||||||
jtag_struct command *cmd,
|
struct jtag_command *cmd,
|
||||||
enum scan_type type,
|
enum scan_type type,
|
||||||
uint8_t *buffer,
|
uint8_t *buffer,
|
||||||
int scan_size
|
int scan_size
|
||||||
|
@ -1378,7 +1378,7 @@ rlink_scan(
|
||||||
static
|
static
|
||||||
int rlink_execute_queue(void)
|
int rlink_execute_queue(void)
|
||||||
{
|
{
|
||||||
jtag_struct command *cmd = jtag_command_queue; /* currently processed command */
|
struct jtag_command *cmd = jtag_command_queue; /* currently processed command */
|
||||||
int scan_size;
|
int scan_size;
|
||||||
enum scan_type type;
|
enum scan_type type;
|
||||||
uint8_t *buffer;
|
uint8_t *buffer;
|
||||||
|
|
Loading…
Reference in New Issue