]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
misc: Fix "havn't" typo
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Tue, 29 Jun 2021 05:14:00 +0000 (07:14 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Fri, 9 Jul 2021 16:42:46 +0000 (18:42 +0200)
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>
hw/usb/desc-msos.c
target/s390x/translate.c
tcg/arm/tcg-target.c.inc
tcg/sparc/tcg-target.c.inc
tcg/tcg-op.c

index 3a5ad7c8d0f819b80160a680bc4fe68f24533556..836e38c67e1ed2f3e528e4e1f729f761844c2af5 100644 (file)
@@ -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,
index 03dab9f3507abde7b607e1a95307b7bd2f647585..8822603a6e7dd8297854d88de5da433afdaa7ec3 100644 (file)
@@ -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;
index 7a761a602e2c1fdf84671fd72e9e9e6fbafe1c85..007ceee68e23102ad96dd47e2d0204845718d9f9 100644 (file)
@@ -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);
index a6ec94a094fa762337c1cca3b93ab0ef6508a3db..688827968b02a121cf7a561e5406f9c0e5617f07 100644 (file)
@@ -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);
index 44d711c0fc4ac8f6b87408f8ac187ee79575ad39..58a34b5147b57d5f2fa6fa46364774fe8cc7cfea 100644 (file)
@@ -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