aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorGustavo Romero <gromero@linux.ibm.com>2020-06-22 14:04:18 -0400
committerOliver O'Halloran <oohall@gmail.com>2020-06-30 12:07:23 +1000
commit10f68979154ddc5cb3b2df7e4c51a3a7752241de (patch)
tree9a75b7d22fca4581a5760102c9fd80d88872e522 /hw
parent5b13a4d2a6086af61f717309ce347264c49308c7 (diff)
downloadskiboot-10f68979154ddc5cb3b2df7e4c51a3a7752241de.zip
skiboot-10f68979154ddc5cb3b2df7e4c51a3a7752241de.tar.gz
skiboot-10f68979154ddc5cb3b2df7e4c51a3a7752241de.tar.bz2
xive: Fix two typos in comments
This commit fixes two typos in XIVE comments about how to handle an escalation event. Signed-off-by: Gustavo Romero <gromero@linux.ibm.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/xive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xive.c b/hw/xive.c
index 8d7d804..8d6095c 100644
--- a/hw/xive.c
+++ b/hw/xive.c
@@ -758,7 +758,7 @@ static struct xive_ive *xive_get_ive(struct xive *x, unsigned int isn)
uint32_t idx = GIRQ_TO_IDX(isn);
if (GIRQ_IS_ESCALATION(isn)) {
- /* Allright, an escalation IVE is buried inside an EQ, let's
+ /* All right, an escalation IVE is buried inside an EQ, let's
* try to find it
*/
struct xive_eq *eq;
@@ -774,7 +774,7 @@ static struct xive_ive *xive_get_ive(struct xive *x, unsigned int isn)
}
/* If using single-escalation, don't let anybody get to the individual
- * esclation interrupts
+ * escalation interrupts
*/
if (xive_get_field32(EQ_W0_UNCOND_ESCALATE, eq->w0))
return NULL;