misc: superfluous semicolon cleanup
This commit is contained in:
parent
b16e55da30
commit
98b4c71156
|
@ -51,7 +51,7 @@ int hostio_open(struct target_controller *tc,
|
|||
target_addr path, size_t path_len,
|
||||
enum target_open_flags flags, mode_t mode)
|
||||
{
|
||||
gdb_putpacket_f("Fopen,%08X/%X,%08X,%08X", path, path_len, flags, mode);;;;
|
||||
gdb_putpacket_f("Fopen,%08X/%X,%08X,%08X", path, path_len, flags, mode);
|
||||
return gdb_main_loop(tc, true);
|
||||
}
|
||||
|
||||
|
|
|
@ -372,7 +372,7 @@ void dap_write_reg(ADIv5_DP_t *dp, uint8_t reg, uint32_t data)
|
|||
dap_index = dp->dp_jd_index;
|
||||
buf[1] = dap_index;
|
||||
buf[2] = 0x01; // Request size
|
||||
buf[3] = reg & ~DAP_TRANSFER_RnW;;
|
||||
buf[3] = reg & ~DAP_TRANSFER_RnW;
|
||||
buf[4] = data & 0xff;
|
||||
buf[5] = (data >> 8) & 0xff;
|
||||
buf[6] = (data >> 16) & 0xff;
|
||||
|
|
|
@ -178,7 +178,7 @@ int jlink_init(bmp_info_t *info)
|
|||
struct libusb_device_descriptor desc;
|
||||
if (libusb_get_device_descriptor(dev, &desc) < 0) {
|
||||
DEBUG_WARN( "libusb_get_device_descriptor() failed");
|
||||
goto error;;
|
||||
goto error;
|
||||
}
|
||||
if (desc.idVendor != USB_VID_SEGGER)
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue