Various spelling fixes
An assorted set of spelling fixes in various places. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20210309111510.79495-1-mjt@msgid.tls.msk.ru> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
b2ae1009d7
commit
cba42d61a3
@ -837,7 +837,7 @@ int NMD::Disassemble(const uint16 * data, std::string & dis,
|
||||
* an ASE attribute and the requested version
|
||||
* not having that attribute
|
||||
*/
|
||||
dis = "ASE attribute missmatch";
|
||||
dis = "ASE attribute mismatch";
|
||||
return -5;
|
||||
}
|
||||
disassembly_function dis_fn = table[i].disassembly;
|
||||
|
@ -127,7 +127,7 @@ npcm7xx_pwm_update_freq(const char *id, uint8_t index, uint32_t old_value, uint3
|
||||
npcm7xx_pwm_update_duty(const char *id, uint8_t index, uint32_t old_value, uint32_t new_value) "%s pwm[%u] Update Duty: old_duty: %u, new_duty: %u"
|
||||
|
||||
# stm32f4xx_syscfg.c
|
||||
stm32f4xx_syscfg_set_irq(int gpio, int line, int level) "Interupt: GPIO: %d, Line: %d; Level: %d"
|
||||
stm32f4xx_syscfg_set_irq(int gpio, int line, int level) "Interrupt: GPIO: %d, Line: %d; Level: %d"
|
||||
stm32f4xx_pulse_exti(int irq) "Pulse EXTI: %d"
|
||||
stm32f4xx_syscfg_read(uint64_t addr) "reg read: addr: 0x%" PRIx64 " "
|
||||
stm32f4xx_syscfg_write(uint64_t addr, uint64_t data) "reg write: addr: 0x%" PRIx64 " val: 0x%" PRIx64 ""
|
||||
|
@ -579,7 +579,7 @@ static uint64_t allwinner_sun8i_emac_read(void *opaque, hwaddr offset,
|
||||
case REG_INT_STA: /* Interrupt Status */
|
||||
value = s->int_sta;
|
||||
break;
|
||||
case REG_INT_EN: /* Interupt Enable */
|
||||
case REG_INT_EN: /* Interrupt Enable */
|
||||
value = s->int_en;
|
||||
break;
|
||||
case REG_TX_CTL_0: /* Transmit Control 0 */
|
||||
|
@ -233,7 +233,7 @@ static void hiomap_cmd(IPMIBmcSim *ibs, uint8_t *cmd, unsigned int cmd_len,
|
||||
case HIOMAP_C_RESET:
|
||||
case HIOMAP_C_LOCK:
|
||||
default:
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "HIOMAP: unknow command %02X\n", cmd[2]);
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "HIOMAP: unknown command %02X\n", cmd[2]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -301,7 +301,7 @@ static void *event_thread(void *arg)
|
||||
} else {
|
||||
if (event->reader != card->reader) {
|
||||
fprintf(stderr,
|
||||
"ERROR: wrong reader: quiting event_thread\n");
|
||||
"ERROR: wrong reader: quitting event_thread\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1126,7 +1126,7 @@ static int ohci_service_td(OHCIState *ohci, struct ohci_ed *ed)
|
||||
OHCI_SET_BM(td.flags, TD_EC, 3);
|
||||
break;
|
||||
}
|
||||
/* An error occured so we have to clear the interrupt counter. See
|
||||
/* An error occurred so we have to clear the interrupt counter. See
|
||||
* spec at 6.4.4 on page 104 */
|
||||
ohci->done_count = 0;
|
||||
}
|
||||
|
@ -909,7 +909,7 @@ check_dev_state:
|
||||
r = 0;
|
||||
}
|
||||
if (r) {
|
||||
/* An error is occured. */
|
||||
/* An error occurred. */
|
||||
dev->log_enabled = false;
|
||||
}
|
||||
|
||||
|
@ -133,7 +133,7 @@ struct SubchDev {
|
||||
bool ccw_fmt_1;
|
||||
bool thinint_active;
|
||||
uint8_t ccw_no_data_cnt;
|
||||
uint16_t migrated_schid; /* used for missmatch detection */
|
||||
uint16_t migrated_schid; /* used for mismatch detection */
|
||||
CcwDataStream cds;
|
||||
/* transport-provided data: */
|
||||
int (*ccw_cb) (SubchDev *, CCW1);
|
||||
|
@ -176,7 +176,7 @@ SRST
|
||||
|
||||
``thread=single|multi``
|
||||
Controls number of TCG threads. When the TCG is multi-threaded
|
||||
there will be one thread per vCPU therefor taking advantage of
|
||||
there will be one thread per vCPU therefore taking advantage of
|
||||
additional host cores. The default is to enable multi-threading
|
||||
where both the back-end and front-ends support it and no
|
||||
incompatible TCG features have been enabled (e.g.
|
||||
@ -2445,7 +2445,7 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
|
||||
" use 'vhostfd=h' to connect to an already opened vhost net device\n"
|
||||
" use 'vhostfds=x:y:...:z to connect to multiple already opened vhost net devices\n"
|
||||
" use 'queues=n' to specify the number of queues to be created for multiqueue TAP\n"
|
||||
" use 'poll-us=n' to speciy the maximum number of microseconds that could be\n"
|
||||
" use 'poll-us=n' to specify the maximum number of microseconds that could be\n"
|
||||
" spent on busy polling for vhost net\n"
|
||||
"-netdev bridge,id=str[,br=bridge][,helper=helper]\n"
|
||||
" configure a host TAP network backend with ID 'str' that is\n"
|
||||
|
@ -7081,7 +7081,7 @@ static void x86_cpu_get_crash_info_qom(Object *obj, Visitor *v,
|
||||
GuestPanicInformation *panic_info;
|
||||
|
||||
if (!cs->crash_occurred) {
|
||||
error_setg(errp, "No crash occured");
|
||||
error_setg(errp, "No crash occurred");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1173,7 +1173,7 @@ static int nested_state_post_load(void *opaque, int version_id)
|
||||
return -EINVAL;
|
||||
}
|
||||
if (nested_state->size > max_nested_state_len) {
|
||||
error_report("Recieved unsupported nested state size: "
|
||||
error_report("Received unsupported nested state size: "
|
||||
"nested_state->size=%d, max=%d",
|
||||
nested_state->size, max_nested_state_len);
|
||||
return -EINVAL;
|
||||
|
@ -117,7 +117,7 @@ static const char *m68k_exception_name(int index)
|
||||
case EXCP_FORMAT:
|
||||
return "Format Error";
|
||||
case EXCP_UNINITIALIZED:
|
||||
return "Unitialized Interruot";
|
||||
return "Uninitialized Interrupt";
|
||||
case EXCP_SPURIOUS:
|
||||
return "Spurious Interrupt";
|
||||
case EXCP_INT_LEVEL_1:
|
||||
|
@ -506,7 +506,7 @@ static void riscv_cpu_realize(DeviceState *dev, Error **errp)
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
qemu_log("vector verison is not specified, "
|
||||
qemu_log("vector version is not specified, "
|
||||
"use the default value v0.7.1\n");
|
||||
}
|
||||
set_vext_version(env, vext_version);
|
||||
|
Loading…
Reference in New Issue
Block a user