diff options
Diffstat (limited to 'src/drivers/intel/fsp2_0/ppi')
-rw-r--r-- | src/drivers/intel/fsp2_0/ppi/Kconfig | 4 | ||||
-rw-r--r-- | src/drivers/intel/fsp2_0/ppi/mp_service1.c | 2 | ||||
-rw-r--r-- | src/drivers/intel/fsp2_0/ppi/mp_service2.c | 2 | ||||
-rw-r--r-- | src/drivers/intel/fsp2_0/ppi/mp_service_ppi.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/drivers/intel/fsp2_0/ppi/Kconfig b/src/drivers/intel/fsp2_0/ppi/Kconfig index 7cbc87f7ab..d45114681e 100644 --- a/src/drivers/intel/fsp2_0/ppi/Kconfig +++ b/src/drivers/intel/fsp2_0/ppi/Kconfig @@ -14,7 +14,7 @@ config MP_SERVICES_PPI_V1 select MP_SERVICES_PPI help This option provides EFI_PEI_MP_SERVICES_PPI structure definitions - along with all APIs as per EDK2 specification. + along with all APIs as per edk2 specification. config MP_SERVICES_PPI_V2 bool @@ -22,7 +22,7 @@ config MP_SERVICES_PPI_V2 select MP_SERVICES_PPI help This option provides EDKII_PEI_MP_SERVICES2_PPI structure definitions - along with all APIs as per EDK2 specification. MP services2 PPI is slight + along with all APIs as per edk2 specification. MP services2 PPI is slight modification over MP services1 PPIs. A new API StartupAllCPUs have been added to allow running a task on BSP and all APs. Also the EFI_PEI_SERVICES parameter has been removed from all MP PPI APIs. diff --git a/src/drivers/intel/fsp2_0/ppi/mp_service1.c b/src/drivers/intel/fsp2_0/ppi/mp_service1.c index bbc78a0c75..879a8e881a 100644 --- a/src/drivers/intel/fsp2_0/ppi/mp_service1.c +++ b/src/drivers/intel/fsp2_0/ppi/mp_service1.c @@ -58,7 +58,7 @@ static efi_return_status_t mps1_identify_processor(const return mp_identify_processor(processor_number); } -/* EDK2 UEFIPKG Open Source MP Service PPI to be installed */ +/* edk2 UEFIPKG Open Source MP Service PPI to be installed */ static efi_pei_mp_services_ppi mp_service1_ppi = { mps1_get_number_of_processors, diff --git a/src/drivers/intel/fsp2_0/ppi/mp_service2.c b/src/drivers/intel/fsp2_0/ppi/mp_service2.c index c7d4764e29..fd91b46d4a 100644 --- a/src/drivers/intel/fsp2_0/ppi/mp_service2.c +++ b/src/drivers/intel/fsp2_0/ppi/mp_service2.c @@ -67,7 +67,7 @@ static efi_return_status_t mps2_identify_processor( return mp_identify_processor(processor_number); } -/* EDK2 UEFIPKG Open Source MP Services 2 PPI to be installed */ +/* edk2 UEFIPKG Open Source MP Services 2 PPI to be installed */ static efi_pei_mp_services_ppi mp_service2_ppi = { mps2_get_number_of_processors, diff --git a/src/drivers/intel/fsp2_0/ppi/mp_service_ppi.c b/src/drivers/intel/fsp2_0/ppi/mp_service_ppi.c index 53d91822b8..66bbc2f085 100644 --- a/src/drivers/intel/fsp2_0/ppi/mp_service_ppi.c +++ b/src/drivers/intel/fsp2_0/ppi/mp_service_ppi.c @@ -96,7 +96,7 @@ efi_return_status_t mp_startup_all_cpus(efi_ap_procedure procedure, /* * Run on APs Serially * - * FIXME: As per MP service specification, EDK2 is allowed to specify the mode + * FIXME: As per MP service specification, edk2 is allowed to specify the mode * in which a 'func' routine should be executed on APs (i.e. execute serially * or concurrently). * |