mirror of https://github.com/xqemu/xqemu.git
fix typo: delete redundant semicolon
Double semicolons should be single. Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
91a9ecefb6
commit
3a93113a00
|
@ -189,7 +189,7 @@ static int nbd_read(BlockDriverState *bs, int64_t sector_num,
|
|||
|
||||
request.type = NBD_CMD_READ;
|
||||
request.handle = (uint64_t)(intptr_t)bs;
|
||||
request.from = sector_num * 512;;
|
||||
request.from = sector_num * 512;
|
||||
request.len = nb_sectors * 512;
|
||||
|
||||
if (nbd_send_request(s->sock, &request) == -1)
|
||||
|
@ -219,7 +219,7 @@ static int nbd_write(BlockDriverState *bs, int64_t sector_num,
|
|||
|
||||
request.type = NBD_CMD_WRITE;
|
||||
request.handle = (uint64_t)(intptr_t)bs;
|
||||
request.from = sector_num * 512;;
|
||||
request.from = sector_num * 512;
|
||||
request.len = nb_sectors * 512;
|
||||
|
||||
if (nbd_send_request(s->sock, &request) == -1)
|
||||
|
|
2
cpus.c
2
cpus.c
|
@ -89,7 +89,7 @@ TimersState timers_state;
|
|||
int64_t cpu_get_icount(void)
|
||||
{
|
||||
int64_t icount;
|
||||
CPUState *env = cpu_single_env;;
|
||||
CPUState *env = cpu_single_env;
|
||||
|
||||
icount = qemu_icount;
|
||||
if (env) {
|
||||
|
|
|
@ -90,7 +90,7 @@ int v9fs_co_mkdir(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name,
|
|||
V9fsState *s = pdu->s;
|
||||
|
||||
if (v9fs_request_cancelled(pdu)) {
|
||||
return -EINTR;;
|
||||
return -EINTR;
|
||||
}
|
||||
cred_init(&cred);
|
||||
cred.fc_mode = mode;
|
||||
|
@ -124,7 +124,7 @@ int v9fs_co_opendir(V9fsPDU *pdu, V9fsFidState *fidp)
|
|||
V9fsState *s = pdu->s;
|
||||
|
||||
if (v9fs_request_cancelled(pdu)) {
|
||||
return -EINTR;;
|
||||
return -EINTR;
|
||||
}
|
||||
v9fs_path_read_lock(s);
|
||||
v9fs_co_run_in_worker(
|
||||
|
@ -152,7 +152,7 @@ int v9fs_co_closedir(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
|||
V9fsState *s = pdu->s;
|
||||
|
||||
if (v9fs_request_cancelled(pdu)) {
|
||||
return -EINTR;;
|
||||
return -EINTR;
|
||||
}
|
||||
v9fs_co_run_in_worker(
|
||||
{
|
||||
|
|
|
@ -59,7 +59,7 @@ static inline int open_by_handle(int mountfd, const char *fh, int flags)
|
|||
static int handle_update_file_cred(int dirfd, const char *name, FsCred *credp)
|
||||
{
|
||||
int fd, ret;
|
||||
fd = openat(dirfd, name, O_NONBLOCK | O_NOFOLLOW);;
|
||||
fd = openat(dirfd, name, O_NONBLOCK | O_NOFOLLOW);
|
||||
if (fd < 0) {
|
||||
return fd;
|
||||
}
|
||||
|
|
|
@ -1492,7 +1492,7 @@ static void v9fs_walk(void *opaque)
|
|||
int32_t fid, newfid;
|
||||
V9fsString *wnames = NULL;
|
||||
V9fsFidState *fidp;
|
||||
V9fsFidState *newfidp = NULL;;
|
||||
V9fsFidState *newfidp = NULL;
|
||||
V9fsPDU *pdu = opaque;
|
||||
V9fsState *s = pdu->s;
|
||||
|
||||
|
@ -2398,7 +2398,7 @@ static void v9fs_link(void *opaque)
|
|||
V9fsState *s = pdu->s;
|
||||
int32_t dfid, oldfid;
|
||||
V9fsFidState *dfidp, *oldfidp;
|
||||
V9fsString name;;
|
||||
V9fsString name;
|
||||
size_t offset = 7;
|
||||
int err = 0;
|
||||
|
||||
|
|
|
@ -304,7 +304,7 @@ void acpi_pm_tmr_calc_overflow_time(ACPIPMTimer *tmr)
|
|||
|
||||
uint32_t acpi_pm_tmr_get(ACPIPMTimer *tmr)
|
||||
{
|
||||
uint32_t d = acpi_pm_tmr_get_clock();;
|
||||
uint32_t d = acpi_pm_tmr_get_clock();
|
||||
return d & 0xffffff;
|
||||
}
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ typedef struct {
|
|||
|
||||
/* Data in mem is always in the byte order of the controller (le).
|
||||
* It must be dword aligned to allow direct access to 32 bit values. */
|
||||
uint8_t mem[PCI_MEM_SIZE] __attribute__((aligned(8)));;
|
||||
uint8_t mem[PCI_MEM_SIZE] __attribute__((aligned(8)));
|
||||
|
||||
/* Configuration bytes. */
|
||||
uint8_t configuration[22];
|
||||
|
|
|
@ -172,7 +172,7 @@ static void vt82c686b_init_ports(PCIIDEState *d) {
|
|||
/* via ide func */
|
||||
static int vt82c686b_ide_initfn(PCIDevice *dev)
|
||||
{
|
||||
PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);;
|
||||
PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
|
||||
uint8_t *pci_conf = d->dev.config;
|
||||
|
||||
pci_config_set_prog_interface(pci_conf, 0x8a); /* legacy ATA mode */
|
||||
|
|
2
hw/ppc.c
2
hw/ppc.c
|
@ -1153,7 +1153,7 @@ void PPC_debug_write (void *opaque, uint32_t addr, uint32_t val)
|
|||
/* NVRAM helpers */
|
||||
static inline uint32_t nvram_read (nvram_t *nvram, uint32_t addr)
|
||||
{
|
||||
return (*nvram->read_fn)(nvram->opaque, addr);;
|
||||
return (*nvram->read_fn)(nvram->opaque, addr);
|
||||
}
|
||||
|
||||
static inline void nvram_write (nvram_t *nvram, uint32_t addr, uint32_t val)
|
||||
|
|
|
@ -429,7 +429,7 @@ static void smc91c111_writeb(void *opaque, target_phys_addr_t offset,
|
|||
smc91c111_update(s);
|
||||
return;
|
||||
}
|
||||
break;;
|
||||
break;
|
||||
|
||||
case 3:
|
||||
switch (offset) {
|
||||
|
|
|
@ -2377,7 +2377,7 @@ static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
|
|||
if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
|
||||
return -TARGET_EFAULT;
|
||||
if (host_to_target_ipc_perm(target_addr,&(host_sd->sem_perm)))
|
||||
return -TARGET_EFAULT;;
|
||||
return -TARGET_EFAULT;
|
||||
target_sd->sem_nsems = tswapal(host_sd->sem_nsems);
|
||||
target_sd->sem_otime = tswapal(host_sd->sem_otime);
|
||||
target_sd->sem_ctime = tswapal(host_sd->sem_ctime);
|
||||
|
|
|
@ -65,7 +65,7 @@ static int tap_alloc(char *dev, size_t dev_size)
|
|||
static int arp_fd = 0;
|
||||
int ip_muxid, arp_muxid;
|
||||
struct strioctl strioc_if, strioc_ppa;
|
||||
int link_type = I_PLINK;;
|
||||
int link_type = I_PLINK;
|
||||
struct lifreq ifr;
|
||||
char actual_name[32] = "";
|
||||
|
||||
|
|
|
@ -1336,7 +1336,7 @@ void HELPER(meeb)(uint32_t f1, uint32_t val)
|
|||
uint32_t HELPER(cebr)(uint32_t f1, uint32_t f2)
|
||||
{
|
||||
float32 v1 = env->fregs[f1].l.upper;
|
||||
float32 v2 = env->fregs[f2].l.upper;;
|
||||
float32 v2 = env->fregs[f2].l.upper;
|
||||
HELPER_LOG("%s: comparing 0x%d from f%d and 0x%d\n", __FUNCTION__,
|
||||
v1, f1, v2);
|
||||
return set_cc_f32(v1, v2);
|
||||
|
@ -1346,7 +1346,7 @@ uint32_t HELPER(cebr)(uint32_t f1, uint32_t f2)
|
|||
uint32_t HELPER(cdbr)(uint32_t f1, uint32_t f2)
|
||||
{
|
||||
float64 v1 = env->fregs[f1].d;
|
||||
float64 v2 = env->fregs[f2].d;;
|
||||
float64 v2 = env->fregs[f2].d;
|
||||
HELPER_LOG("%s: comparing 0x%ld from f%d and 0x%ld\n", __FUNCTION__,
|
||||
v1, f1, v2);
|
||||
return set_cc_f64(v1, v2);
|
||||
|
|
2
ui/vnc.c
2
ui/vnc.c
|
@ -2183,7 +2183,7 @@ static int protocol_client_auth(VncState *vs, uint8_t *data, size_t len)
|
|||
|
||||
#ifdef CONFIG_VNC_TLS
|
||||
case VNC_AUTH_VENCRYPT:
|
||||
VNC_DEBUG("Accept VeNCrypt auth\n");;
|
||||
VNC_DEBUG("Accept VeNCrypt auth\n");
|
||||
start_auth_vencrypt(vs);
|
||||
break;
|
||||
#endif /* CONFIG_VNC_TLS */
|
||||
|
|
|
@ -542,9 +542,9 @@ static int usbredir_handle_data(USBDevice *udev, USBPacket *p)
|
|||
case USB_ENDPOINT_XFER_ISOC:
|
||||
return usbredir_handle_iso_data(dev, p, ep);
|
||||
case USB_ENDPOINT_XFER_BULK:
|
||||
return usbredir_handle_bulk_data(dev, p, ep);;
|
||||
return usbredir_handle_bulk_data(dev, p, ep);
|
||||
case USB_ENDPOINT_XFER_INT:
|
||||
return usbredir_handle_interrupt_data(dev, p, ep);;
|
||||
return usbredir_handle_interrupt_data(dev, p, ep);
|
||||
default:
|
||||
ERROR("handle_data ep %02X has unknown type %d\n", ep,
|
||||
dev->endpoint[EP2I(ep)].type);
|
||||
|
|
Loading…
Reference in New Issue