Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6-microblaze.git] / drivers / irqchip / irq-gic-v3-its.c
index d205faf..2e6923c 100644 (file)
@@ -1497,7 +1497,7 @@ static void its_vlpi_set_doorbell(struct irq_data *d, bool enable)
         *
         * Ideally, we'd issue a VMAPTI to set the doorbell to its LPI
         * value or to 1023, depending on the enable bit. But that
-        * would be issueing a mapping for an /existing/ DevID+EventID
+        * would be issuing a mapping for an /existing/ DevID+EventID
         * pair, which is UNPREDICTABLE. Instead, let's issue a VMOVI
         * to the /same/ vPE, using this opportunity to adjust the
         * doorbell. Mouahahahaha. We loves it, Precious.
@@ -3127,7 +3127,7 @@ static void its_cpu_init_lpis(void)
 
                /*
                 * It's possible for CPU to receive VLPIs before it is
-                * sheduled as a vPE, especially for the first CPU, and the
+                * scheduled as a vPE, especially for the first CPU, and the
                 * VLPI with INTID larger than 2^(IDbits+1) will be considered
                 * as out of range and dropped by GIC.
                 * So we initialize IDbits to known value to avoid VLPI drop.
@@ -3621,7 +3621,7 @@ static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq,
 
        /*
         * If all interrupts have been freed, start mopping the
-        * floor. This is conditionned on the device not being shared.
+        * floor. This is conditioned on the device not being shared.
         */
        if (!its_dev->shared &&
            bitmap_empty(its_dev->event_map.lpi_map,
@@ -4199,7 +4199,7 @@ static int its_sgi_set_affinity(struct irq_data *d,
 {
        /*
         * There is no notion of affinity for virtual SGIs, at least
-        * not on the host (since they can only be targetting a vPE).
+        * not on the host (since they can only be targeting a vPE).
         * Tell the kernel we've done whatever it asked for.
         */
        irq_data_update_effective_affinity(d, mask_val);
@@ -4244,7 +4244,7 @@ static int its_sgi_get_irqchip_state(struct irq_data *d,
        /*
         * Locking galore! We can race against two different events:
         *
-        * - Concurent vPE affinity change: we must make sure it cannot
+        * - Concurrent vPE affinity change: we must make sure it cannot
         *   happen, or we'll talk to the wrong redistributor. This is
         *   identical to what happens with vLPIs.
         *