aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/pc80
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/pc80')
-rw-r--r--src/drivers/pc80/i8259.c2
-rw-r--r--src/drivers/pc80/mc146818rtc.c2
-rw-r--r--src/drivers/pc80/tpm.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/pc80/i8259.c b/src/drivers/pc80/i8259.c
index 78880c9361..6f97c56dcf 100644
--- a/src/drivers/pc80/i8259.c
+++ b/src/drivers/pc80/i8259.c
@@ -94,7 +94,7 @@ void setup_i8259(void)
/* Now clear the interrupts through OCW1.
* First we mask off all interrupts on the slave interrupt controller
* then we mask off all interrupts but interrupt 2 on the master
- * controller. This way the cascading stays alife.
+ * controller. This way the cascading stays alive.
*/
outb(ALL_IRQS, SLAVE_PIC_OCW1);
outb(ALL_IRQS & ~IRQ2, MASTER_PIC_OCW1);
diff --git a/src/drivers/pc80/mc146818rtc.c b/src/drivers/pc80/mc146818rtc.c
index d91f207427..be524541fd 100644
--- a/src/drivers/pc80/mc146818rtc.c
+++ b/src/drivers/pc80/mc146818rtc.c
@@ -132,7 +132,7 @@ void rtc_init(int invalid)
/*
* Avoid clearing pending interrupts in the resume path because
* the Linux kernel relies on this to know if it should restart
- * the RTC timerqueue if the wake was due to the RTC alarm.
+ * the RTC timer queue if the wake was due to the RTC alarm.
*/
if (acpi_slp_type == 3)
return;
diff --git a/src/drivers/pc80/tpm.c b/src/drivers/pc80/tpm.c
index 9a4fc096ff..0ea0017b47 100644
--- a/src/drivers/pc80/tpm.c
+++ b/src/drivers/pc80/tpm.c
@@ -565,7 +565,7 @@ int tis_open(void)
/*
* tis_close()
*
- * terminate the currect session with the TPM by releasing the locked
+ * terminate the current session with the TPM by releasing the locked
* locality. Returns 0 on success of TPM_DRIVER_ERR on failure (in case lock
* removal did not succeed).
*/