qapi/misc-target: Rename SGXEPCSection to SgxEpcSection

QAPI requires strict PascalCase naming style, i.e., only the first
letter of a single word is allowed to be uppercase, which could help
with readability.

Rename SGXEPCSection to SgxEpcSection.

Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
Link: https://lore.kernel.org/r/20250516091130.2374221-2-zhao1.liu@intel.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Zhao Liu 2025-05-16 17:11:29 +08:00 committed by Paolo Bonzini
parent 560375cff3
commit a1b3e82773
2 changed files with 12 additions and 12 deletions

View file

@ -319,7 +319,7 @@
'if': 'TARGET_ARM' }
##
# @SGXEPCSection:
# @SgxEpcSection:
#
# Information about intel SGX EPC section info
#
@ -329,7 +329,7 @@
#
# Since: 7.0
##
{ 'struct': 'SGXEPCSection',
{ 'struct': 'SgxEpcSection',
'data': { 'node': 'int',
'size': 'uint64'}}
@ -355,7 +355,7 @@
'sgx1': 'bool',
'sgx2': 'bool',
'flc': 'bool',
'sections': ['SGXEPCSection']},
'sections': ['SgxEpcSection']},
'if': 'TARGET_I386' }
##