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,
|
target_addr path, size_t path_len,
|
||||||
enum target_open_flags flags, mode_t mode)
|
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);
|
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;
|
dap_index = dp->dp_jd_index;
|
||||||
buf[1] = dap_index;
|
buf[1] = dap_index;
|
||||||
buf[2] = 0x01; // Request size
|
buf[2] = 0x01; // Request size
|
||||||
buf[3] = reg & ~DAP_TRANSFER_RnW;;
|
buf[3] = reg & ~DAP_TRANSFER_RnW;
|
||||||
buf[4] = data & 0xff;
|
buf[4] = data & 0xff;
|
||||||
buf[5] = (data >> 8) & 0xff;
|
buf[5] = (data >> 8) & 0xff;
|
||||||
buf[6] = (data >> 16) & 0xff;
|
buf[6] = (data >> 16) & 0xff;
|
||||||
|
|
|
@ -178,7 +178,7 @@ int jlink_init(bmp_info_t *info)
|
||||||
struct libusb_device_descriptor desc;
|
struct libusb_device_descriptor desc;
|
||||||
if (libusb_get_device_descriptor(dev, &desc) < 0) {
|
if (libusb_get_device_descriptor(dev, &desc) < 0) {
|
||||||
DEBUG_WARN( "libusb_get_device_descriptor() failed");
|
DEBUG_WARN( "libusb_get_device_descriptor() failed");
|
||||||
goto error;;
|
goto error;
|
||||||
}
|
}
|
||||||
if (desc.idVendor != USB_VID_SEGGER)
|
if (desc.idVendor != USB_VID_SEGGER)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue