PcAtChipsetPkg: Fix spelling errors
https://bugzilla.tianocore.org/show_bug.cgi?id=2263 Cc: Ray Ni <ray.ni@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
This commit is contained in:
committed by
Michael D Kinney
parent
44c9618a3f
commit
53b1dd1036
@@ -1,5 +1,5 @@
|
||||
/** @file
|
||||
Timer Architectural Protocol module using High Precesion Event Timer (HPET)
|
||||
Timer Architectural Protocol module using High Precision Event Timer (HPET)
|
||||
|
||||
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
@@ -246,7 +246,7 @@ HpetRead (
|
||||
/**
|
||||
Write a 64-bit HPET register.
|
||||
|
||||
@param Offset Specifies the ofsfert of the HPET register to write.
|
||||
@param Offset Specifies the offset of the HPET register to write.
|
||||
@param Value Specifies the value to write to the HPET register specified by Offset.
|
||||
|
||||
@return The 64-bit value written to HPET register specified by Offset.
|
||||
@@ -530,7 +530,7 @@ TimerDriverSetTimerPeriod (
|
||||
// If TimerPeriod is 0, then mask HPET Timer interrupts
|
||||
//
|
||||
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapablity != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapability != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
//
|
||||
// Disable HPET MSI interrupt generation
|
||||
//
|
||||
@@ -576,7 +576,7 @@ TimerDriverSetTimerPeriod (
|
||||
//
|
||||
// Enable HPET Timer interrupt generation
|
||||
//
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapablity != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapability != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
//
|
||||
// Program MSI Address and MSI Data values in the selected HPET Timer
|
||||
// Program HPET register with APIC ID of current BSP in case BSP has been switched
|
||||
@@ -834,7 +834,7 @@ TimerDriverInitialize (
|
||||
//
|
||||
// Check to see if this HPET Timer supports MSI
|
||||
//
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapablity != 0) {
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapability != 0) {
|
||||
//
|
||||
// Save the index of the first HPET Timer that supports MSI interrupts
|
||||
//
|
||||
@@ -959,7 +959,7 @@ TimerDriverInitialize (
|
||||
// Show state of enabled HPET timer
|
||||
//
|
||||
DEBUG_CODE (
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapablity != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
if (mTimerConfiguration.Bits.MsiInterruptCapability != 0 && FeaturePcdGet (PcdHpetMsiEnable)) {
|
||||
DEBUG ((DEBUG_INFO, "HPET Interrupt Mode MSI\n"));
|
||||
} else {
|
||||
DEBUG ((DEBUG_INFO, "HPET Interrupt Mode I/O APIC\n"));
|
||||
|
Reference in New Issue
Block a user