Skip to content

Commit e80c8e3

Browse files
include/VBox/apic.h,VMM: Fix typo
svn:sync-xref-src-repo-rev: r174570
1 parent 85df36d commit e80c8e3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

include/VBox/apic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ typedef enum XAPICDESTSHORTHAND
428428
{
429429
XAPICDESTSHORTHAND_NONE = 0,
430430
XAPICDESTSHORTHAND_SELF,
431-
XAPIDDESTSHORTHAND_ALL_INCL_SELF,
431+
XAPICDESTSHORTHAND_ALL_INCL_SELF,
432432
XAPICDESTSHORTHAND_ALL_EXCL_SELF
433433
} XAPICDESTSHORTHAND;
434434

src/VBox/VMM/VMMAll/target-x86/APICAll-x86.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: APICAll-x86.cpp 112682 2026-01-25 17:10:52Z alexander.eichner@oracle.com $ */
1+
/* $Id: APICAll-x86.cpp 114733 2026-07-21 06:02:36Z alexander.eichner@oracle.com $ */
22
/** @file
33
* APIC - Advanced Programmable Interrupt Controller - All Contexts.
44
*/
@@ -702,7 +702,7 @@ DECLINLINE(VBOXSTRICTRC) apicSendIpi(PVMCPUCC pVCpu, int rcRZ)
702702
break;
703703
}
704704

705-
case XAPIDDESTSHORTHAND_ALL_INCL_SELF:
705+
case XAPICDESTSHORTHAND_ALL_INCL_SELF:
706706
{
707707
VMCPUSET_FILL(&DestCpuSet);
708708
break;

src/VBox/VMM/VMMAll/target-x86/APICAllCommon-x86.cpp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: APICAllCommon-x86.cpp.h 112683 2026-01-25 17:23:05Z alexander.eichner@oracle.com $ */
1+
/* $Id: APICAllCommon-x86.cpp.h 114733 2026-07-21 06:02:36Z alexander.eichner@oracle.com $ */
22
/** @file
33
* APIC - Advanced Programmable Interrupt Controller - All-context and R3-context common code.
44
*/
@@ -568,7 +568,7 @@ static const char *apicR3CommonGetDestShorthandName(XAPICDESTSHORTHAND enmDestSh
568568
{
569569
case XAPICDESTSHORTHAND_NONE: return "None";
570570
case XAPICDESTSHORTHAND_SELF: return "Self";
571-
case XAPIDDESTSHORTHAND_ALL_INCL_SELF: return "All including self";
571+
case XAPICDESTSHORTHAND_ALL_INCL_SELF: return "All including self";
572572
case XAPICDESTSHORTHAND_ALL_EXCL_SELF: return "All excluding self";
573573
default: break;
574574
}

0 commit comments

Comments
 (0)