Skip to content

Commit 9cf032b

Browse files
Change PCIE to PCIe
PCIe is the capitalization recognized by PCI-SIG. Signed-off-by: Steven Bellock <[email protected]>
1 parent ba1ed02 commit 9cf032b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[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))
1818

19-
PCIE follows :
19+
PCIe follows :
2020

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

include/industry_standard/cxl_idekm.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Copyright Notice:
3-
* Copyright 2021-2022 DMTF. All rights reserved.
3+
* Copyright 2021-2025 DMTF. All rights reserved.
44
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
55
**/
66

@@ -80,7 +80,7 @@ typedef struct {
8080
uint8_t reserved2;
8181
uint8_t key_sub_stream;
8282
uint8_t port_index;
83-
/*KEY 8 DW - same as PCIE IDE
83+
/*KEY 8 DW - same as PCIe IDE
8484
* Pending Initial IV 3 DW - ignore if IV_DEFAULT = 1*/
8585
} cxl_ide_km_key_prog_t;
8686

include/library/spdm_transport_pcidoe_lib.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Copyright Notice:
3-
* Copyright 2021-2024 DMTF. All rights reserved.
3+
* Copyright 2021-2025 DMTF. All rights reserved.
44
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
55
**/
66

@@ -135,7 +135,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request(size_t transport_messa
135135

136136
/**
137137
* Decode a DOE discovery request message to get the DOE Discovery Version field.
138-
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
138+
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
139139
*
140140
* @param transport_message_size Size in bytes of the transport message data buffer.
141141
* @param transport_message A pointer to a source buffer to store the transport message.

library/spdm_transport_pcidoe_lib/libspdm_doe_pcidoe.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Copyright Notice:
3-
* Copyright 2021-2024 DMTF. All rights reserved.
3+
* Copyright 2021-2025 DMTF. All rights reserved.
44
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
55
**/
66

@@ -303,7 +303,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request(size_t transport_messa
303303

304304
/**
305305
* Decode a DOE discovery request message to get the DOE Discovery Version field.
306-
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
306+
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
307307
*
308308
* @param transport_message_size Size in bytes of the transport message data buffer.
309309
* @param transport_message A pointer to a source buffer to store the transport message.
@@ -334,7 +334,7 @@ libspdm_return_t libspdm_pci_doe_decode_discovery_request_version(size_t transpo
334334
* of the PCIe DOE spec. DOE discovery is mandatory for all
335335
* implementations.
336336
*
337-
* DOE Discovery Version is introduced in PCIE Spec 6.1 Section 6.30.1.1.
337+
* DOE Discovery Version is introduced in PCIe Spec 6.1 Section 6.30.1.1.
338338
* It is Byte-1 in DOE discovery request.
339339
*/
340340
message = (const uint8_t *)transport_message + sizeof(pci_doe_data_object_header_t) + 1;

0 commit comments

Comments
 (0)