Skip to content

Commit a476123

Browse files
philmdvivier
authored andcommitted
misc: Fix "havn't" typo
Fix "havn't (make)" -> "haven't (made)" typo. Reviewed-by: Luis Pires <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Peter Maydell <[email protected]> Message-Id: <[email protected]> Signed-off-by: Laurent Vivier <[email protected]>
1 parent 9bb5405 commit a476123

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

hw/usb/desc-msos.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ static int usb_desc_msos_prop(const USBDesc *desc, uint8_t *dest)
181181

182182
if (desc->msos->Label) {
183183
/*
184-
* Given as example in the specs. Havn't figured yet where
184+
* Given as example in the specs. Haven't figured yet where
185185
* this label shows up in the windows gui.
186186
*/
187187
length += usb_desc_msos_prop_str(dest+length, MSOS_REG_SZ,

target/s390x/translate.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -6270,8 +6270,10 @@ static void extract_field(DisasFields *o, const DisasField *f, uint64_t insn)
62706270
abort();
62716271
}
62726272

6273-
/* Validate that the "compressed" encoding we selected above is valid.
6274-
I.e. we havn't make two different original fields overlap. */
6273+
/*
6274+
* Validate that the "compressed" encoding we selected above is valid.
6275+
* I.e. we haven't made two different original fields overlap.
6276+
*/
62756277
assert(((o->presentC >> f->indexC) & 1) == 0);
62766278
o->presentC |= 1 << f->indexC;
62776279
o->presentO |= 1 << f->indexO;

tcg/arm/tcg-target.c.inc

+4-2
Original file line numberDiff line numberDiff line change
@@ -2407,8 +2407,10 @@ static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)
24072407

24082408
static void tcg_target_init(TCGContext *s)
24092409
{
2410-
/* Only probe for the platform and capabilities if we havn't already
2411-
determined maximum values at compile time. */
2410+
/*
2411+
* Only probe for the platform and capabilities if we haven't already
2412+
* determined maximum values at compile time.
2413+
*/
24122414
#if !defined(use_idiv_instructions) || !defined(use_neon_instructions)
24132415
{
24142416
unsigned long hwcap = qemu_getauxval(AT_HWCAP);

tcg/sparc/tcg-target.c.inc

+4-2
Original file line numberDiff line numberDiff line change
@@ -1690,8 +1690,10 @@ static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)
16901690

16911691
static void tcg_target_init(TCGContext *s)
16921692
{
1693-
/* Only probe for the platform and capabilities if we havn't already
1694-
determined maximum values at compile time. */
1693+
/*
1694+
* Only probe for the platform and capabilities if we haven't already
1695+
* determined maximum values at compile time.
1696+
*/
16951697
#ifndef use_vis3_instructions
16961698
{
16971699
unsigned long hwcap = qemu_getauxval(AT_HWCAP);

tcg/tcg-op.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2741,7 +2741,7 @@ void tcg_gen_goto_tb(unsigned idx)
27412741
/* We only support two chained exits. */
27422742
tcg_debug_assert(idx <= TB_EXIT_IDXMAX);
27432743
#ifdef CONFIG_DEBUG_TCG
2744-
/* Verify that we havn't seen this numbered exit before. */
2744+
/* Verify that we haven't seen this numbered exit before. */
27452745
tcg_debug_assert((tcg_ctx->goto_tb_issue_mask & (1 << idx)) == 0);
27462746
tcg_ctx->goto_tb_issue_mask |= 1 << idx;
27472747
#endif

0 commit comments

Comments
 (0)