openrisc: fix typos in comments and warnings
authorJonas Bonn <jonas@southpole.se>
Fri, 21 Sep 2012 07:19:48 +0000 (09:19 +0200)
committerJonas Bonn <jonas@southpole.se>
Thu, 11 Oct 2012 09:27:25 +0000 (11:27 +0200)
Signed-off-by: Jonas Bonn <jonas@southpole.se>
arch/openrisc/kernel/irq.c

index 094c394eee5b20ffdd986a4e2e09a6114e5b54ea..61327985f967b8684fcc2f8132c761fd61dc0eec 100644 (file)
@@ -58,7 +58,7 @@ static void or1k_pic_ack(struct irq_data *data)
 {
        /* EDGE-triggered interrupts need to be ack'ed in order to clear
         * the latch.
-        * LEVER-triggered interrupts do not need to be ack'ed; however,
+        * LEVEL-triggered interrupts do not need to be ack'ed; however,
         * ack'ing the interrupt has no ill-effect and is quicker than
         * trying to figure out what type it is...
         */
@@ -77,7 +77,7 @@ static void or1k_pic_ack(struct irq_data *data)
 
        mtspr(SPR_PICSR, mfspr(SPR_PICSR) & ~(1UL << data->hwirq));
 #else
-       WARN(1, "Interrupt handling possibily broken\n");
+       WARN(1, "Interrupt handling possibly broken\n");
        mtspr(SPR_PICSR, (1UL << data->hwirq));
 #endif
 }
@@ -89,7 +89,7 @@ static void or1k_pic_mask_ack(struct irq_data *data)
 #ifdef CONFIG_OR1K_1200
        mtspr(SPR_PICSR, mfspr(SPR_PICSR) & ~(1UL << data->hwirq));
 #else
-       WARN(1, "Interrupt handling possibily broken\n");
+       WARN(1, "Interrupt handling possibly broken\n");
        mtspr(SPR_PICSR, (1UL << data->hwirq));
 #endif
 }
This page took 0.067997 seconds and 5 git commands to generate.