Skip to content

Commit

Permalink
trivial: make capitalization more consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
nspin authored and lsf37 committed Jul 1, 2024
1 parent 60d1c3c commit 3b46a7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capdl-loader-app/include/capdl.h
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ typedef struct {
#define CDL_TCB_Notification_Slot 8

#if defined(CONFIG_ARM_HYPERVISOR_SUPPORT) || defined(CONFIG_VTX)
#define CDL_TCB_VCPU_SLOT 9
#define CDL_TCB_VCPU_Slot 9
#endif

#define CDL_CapData_MakeGuard(x, y) \
Expand Down
2 changes: 1 addition & 1 deletion capdl-loader-app/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ static void init_tcb(CDL_Model *spec, CDL_ObjID tcb)
CDL_Cap *cdl_notification = get_cap_at(cdl_tcb, CDL_TCB_Notification_Slot);

#if defined(CONFIG_ARM_HYPERVISOR_SUPPORT) || defined(CONFIG_VTX)
CDL_Cap *cdl_vcpu = get_cap_at(cdl_tcb, CDL_TCB_VCPU_SLOT);
CDL_Cap *cdl_vcpu = get_cap_at(cdl_tcb, CDL_TCB_VCPU_Slot);
#endif

CDL_Cap *cdl_sc = get_cap_at(cdl_tcb, CDL_TCB_SC_Slot);
Expand Down

0 comments on commit 3b46a7b

Please sign in to comment.