Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change PCIE to PCIe #2969

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[DSP0276](https://www.dmtf.org/dsp/DSP0276) Secured Messages using SPDM over MCTP Binding Specification (version [1.2.0](https://www.dmtf.org/sites/default/files/standards/documents/DSP0276_1.2.0.pdf))

PCIE follows :
PCIe follows :

PCI Express Base Specification [Revision 6.2](https://members.pcisig.com/wg/PCI-SIG/document/20590)

Expand Down
4 changes: 2 additions & 2 deletions include/industry_standard/cxl_idekm.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Copyright Notice:
* Copyright 2021-2022 DMTF. All rights reserved.
* Copyright 2021-2025 DMTF. All rights reserved.
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
**/

Expand Down Expand Up @@ -80,7 +80,7 @@ typedef struct {
uint8_t reserved2;
uint8_t key_sub_stream;
uint8_t port_index;
/*KEY 8 DW - same as PCIE IDE
/*KEY 8 DW - same as PCIe IDE
* Pending Initial IV 3 DW - ignore if IV_DEFAULT = 1*/
} cxl_ide_km_key_prog_t;

Expand Down
4 changes: 2 additions & 2 deletions include/library/spdm_transport_pcidoe_lib.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Copyright Notice:
* Copyright 2021-2024 DMTF. All rights reserved.
* Copyright 2021-2025 DMTF. All rights reserved.
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
**/

Expand Down Expand Up @@ -135,7 +135,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request(size_t transport_messa

/**
* Decode a DOE discovery request message to get the DOE Discovery Version field.
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
*
* @param transport_message_size Size in bytes of the transport message data buffer.
* @param transport_message A pointer to a source buffer to store the transport message.
Expand Down
6 changes: 3 additions & 3 deletions library/spdm_transport_pcidoe_lib/libspdm_doe_pcidoe.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Copyright Notice:
* Copyright 2021-2024 DMTF. All rights reserved.
* Copyright 2021-2025 DMTF. All rights reserved.
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
**/

Expand Down Expand Up @@ -303,7 +303,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request(size_t transport_messa

/**
* Decode a DOE discovery request message to get the DOE Discovery Version field.
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
*
* @param transport_message_size Size in bytes of the transport message data buffer.
* @param transport_message A pointer to a source buffer to store the transport message.
Expand Down Expand Up @@ -334,7 +334,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request_version(size_t transpo
* of the PCIe DOE spec. DOE discovery is mandatory for all
* implementations.
*
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
* It is Byte-1 in DOE discovery request.
*/
message = (const uint8_t *)transport_message + sizeof(pci_doe_data_object_header_t) + 1;
Expand Down