Skip to content

Commit 4b87063

Browse files
committed
WPP: Change tracing GUID to newly generated one
See: https://learn.microsoft.com/en-us/windows-hardware/drivers/gettingstarted/from-sample-code-to-production-driver Should not use the GUID from the sample. Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 7a9083b commit 4b87063

1 file changed

Lines changed: 15 additions & 13 deletions

File tree

FrameworkSensors/SensorsTrace.h

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//Copyright (C) Microsoft Corporation, All Rights Reserved
2+
//Copyright (C) Framework Computer Inc, All Rights Reserved
23
//
34
//Abstract:
45
//
@@ -16,19 +17,20 @@ extern "C" {
1617

1718
// Define the tracing flags.
1819
//
19-
// Tracing GUID - 3C773167-F26D-4F72-A1DE-95F1FD795840
20-
21-
#define WPP_CONTROL_GUIDS \
22-
WPP_DEFINE_CONTROL_GUID( \
23-
SimpleDeviceOrientationSensorTraceGuid, (3C773167,F26D,4F72,A1DE,95F1FD795840), \
24-
WPP_DEFINE_BIT(EntryExit) \
25-
WPP_DEFINE_BIT(DataFlow) \
26-
WPP_DEFINE_BIT(Verbose) \
27-
WPP_DEFINE_BIT(Information) \
28-
WPP_DEFINE_BIT(Warning) \
29-
WPP_DEFINE_BIT(Error) \
30-
WPP_DEFINE_BIT(Fatal) \
31-
WPP_DEFINE_BIT(DriverStatus) \
20+
// Tracing GUID - B915AE22-198E-4CF7-BF4D-395FAD3F645A
21+
22+
23+
#define WPP_CONTROL_GUIDS \
24+
WPP_DEFINE_CONTROL_GUID( \
25+
FrameworkSensorsTraceGuid, (B915AE22,198E,4CF7,BF4D,395FAD3F645A), \
26+
WPP_DEFINE_BIT(EntryExit) \
27+
WPP_DEFINE_BIT(DataFlow) \
28+
WPP_DEFINE_BIT(Verbose) \
29+
WPP_DEFINE_BIT(Information) \
30+
WPP_DEFINE_BIT(Warning) \
31+
WPP_DEFINE_BIT(Error) \
32+
WPP_DEFINE_BIT(Fatal) \
33+
WPP_DEFINE_BIT(DriverStatus) \
3234
)
3335

3436
#define WPP_FLAG_LEVEL_LOGGER(flag, level) WPP_LEVEL_LOGGER(flag)

0 commit comments

Comments
 (0)