Skip to content

Commit

Permalink
misc: Fix "havn't" typo
Browse files Browse the repository at this point in the history
Fix "havn't (make)" -> "haven't (made)" typo.

Reviewed-by: Luis Pires <luis.pires@eldorado.org.br>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20210629051400.2573253-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
  • Loading branch information
philmd authored and vivier committed Jul 9, 2021
1 parent 9bb5405 commit a476123
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion hw/usb/desc-msos.c
Expand Up @@ -181,7 +181,7 @@ static int usb_desc_msos_prop(const USBDesc *desc, uint8_t *dest)

if (desc->msos->Label) {
/*
* Given as example in the specs. Havn't figured yet where
* Given as example in the specs. Haven't figured yet where
* this label shows up in the windows gui.
*/
length += usb_desc_msos_prop_str(dest+length, MSOS_REG_SZ,
Expand Down
6 changes: 4 additions & 2 deletions target/s390x/translate.c
Expand Up @@ -6270,8 +6270,10 @@ static void extract_field(DisasFields *o, const DisasField *f, uint64_t insn)
abort();
}

/* Validate that the "compressed" encoding we selected above is valid.
I.e. we havn't make two different original fields overlap. */
/*
* Validate that the "compressed" encoding we selected above is valid.
* I.e. we haven't made two different original fields overlap.
*/
assert(((o->presentC >> f->indexC) & 1) == 0);
o->presentC |= 1 << f->indexC;
o->presentO |= 1 << f->indexO;
Expand Down
6 changes: 4 additions & 2 deletions tcg/arm/tcg-target.c.inc
Expand Up @@ -2407,8 +2407,10 @@ static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)

static void tcg_target_init(TCGContext *s)
{
/* Only probe for the platform and capabilities if we havn't already
determined maximum values at compile time. */
/*
* Only probe for the platform and capabilities if we haven't already
* determined maximum values at compile time.
*/
#if !defined(use_idiv_instructions) || !defined(use_neon_instructions)
{
unsigned long hwcap = qemu_getauxval(AT_HWCAP);
Expand Down
6 changes: 4 additions & 2 deletions tcg/sparc/tcg-target.c.inc
Expand Up @@ -1690,8 +1690,10 @@ static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)

static void tcg_target_init(TCGContext *s)
{
/* Only probe for the platform and capabilities if we havn't already
determined maximum values at compile time. */
/*
* Only probe for the platform and capabilities if we haven't already
* determined maximum values at compile time.
*/
#ifndef use_vis3_instructions
{
unsigned long hwcap = qemu_getauxval(AT_HWCAP);
Expand Down
2 changes: 1 addition & 1 deletion tcg/tcg-op.c
Expand Up @@ -2741,7 +2741,7 @@ void tcg_gen_goto_tb(unsigned idx)
/* We only support two chained exits. */
tcg_debug_assert(idx <= TB_EXIT_IDXMAX);
#ifdef CONFIG_DEBUG_TCG
/* Verify that we havn't seen this numbered exit before. */
/* Verify that we haven't seen this numbered exit before. */
tcg_debug_assert((tcg_ctx->goto_tb_issue_mask & (1 << idx)) == 0);
tcg_ctx->goto_tb_issue_mask |= 1 << idx;
#endif
Expand Down

0 comments on commit a476123

Please sign in to comment.