]> Git Repo - qemu.git/commitdiff
sdhci: Fix a typo in comment
authorPhilippe Mathieu-Daudé <[email protected]>
Fri, 9 Mar 2018 17:09:45 +0000 (17:09 +0000)
committerPeter Maydell <[email protected]>
Fri, 9 Mar 2018 17:09:45 +0000 (17:09 +0000)
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Message-id: 20180309153654[email protected]
Signed-off-by: Peter Maydell <[email protected]>
hw/sd/sdhci.c

index 97b4a473c8dad725e6d9fbb4af86e29a7a026464..1b828b104df0f2967b7980f85cb82b088bad0a00 100644 (file)
@@ -433,13 +433,13 @@ static void sdhci_read_block_from_card(SDHCIState *s)
     for (index = 0; index < blk_size; index++) {
         data = sdbus_read_data(&s->sdbus);
         if (!FIELD_EX32(s->hostctl2, SDHC_HOSTCTL2, EXECUTE_TUNING)) {
-            /* Device is not in tunning */
+            /* Device is not in tuning */
             s->fifo_buffer[index] = data;
         }
     }
 
     if (FIELD_EX32(s->hostctl2, SDHC_HOSTCTL2, EXECUTE_TUNING)) {
-        /* Device is in tunning */
+        /* Device is in tuning */
         s->hostctl2 &= ~R_SDHC_HOSTCTL2_EXECUTE_TUNING_MASK;
         s->hostctl2 |= R_SDHC_HOSTCTL2_SAMPLING_CLKSEL_MASK;
         s->prnsts &= ~(SDHC_DAT_LINE_ACTIVE | SDHC_DOING_READ |
This page took 0.029141 seconds and 4 git commands to generate.