summaryrefslogtreecommitdiff
path: root/network/modem
diff options
context:
space:
mode:
authorAndre Muezerie <[email protected]>2026-05-21 19:49:45 -0400
committerAndre Muezerie <[email protected]>2026-05-21 19:49:45 -0400
commit3fd877b4f4ae8f127d555b184d9bd12dce562269 (patch)
treea8dd571f4f86cd0847838a9b424ef6b1239f0173 /network/modem
parentc7ad9e81acd5d28f339c7f007d6bc9d7ff24f7aa (diff)
Removed trailing spaces under config and modem
This PR performs a whitespace-only cleanup by removing trailing spaces/tabs from source files under directories: • network\config • network\modem No functional logic changes were introduced. What Changed 1. Removed end-of-line trailing whitespace in text files. 2. Kept file encoding and line endings intact by applying byte-preserving edits. Risk / Impact 1. Low risk: formatting-only change. 2. No API, behavior, or build configuration changes intended.
Diffstat (limited to 'network/modem')
-rw-r--r--network/modem/fakemodem/driver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/network/modem/fakemodem/driver.c b/network/modem/fakemodem/driver.c
index 572e462f..8484d95f 100644
--- a/network/modem/fakemodem/driver.c
+++ b/network/modem/fakemodem/driver.c
@@ -232,7 +232,7 @@ Return Value:
&defQueue // pointer to default queue
);
__analysis_assume(queueConfig.EvtIoStop == 0);
-
+
if (!NT_SUCCESS (status)) {
//
@@ -256,7 +256,7 @@ Return Value:
&fmDeviceData->FmReadQueue
);
__analysis_assume(queueConfig.EvtIoStop == 0);
-
+
if (!NT_SUCCESS (status)) {
KdPrint( ("WdfIoQueueCreate failed 0x%x\n", status));
return status;
@@ -276,7 +276,7 @@ Return Value:
&fmDeviceData->FmMaskWaitQueue
);
__analysis_assume(queueConfig.EvtIoStop == 0);
-
+
if (!NT_SUCCESS (status)) {
KdPrint( ("WdfIoQueueCreate failed 0x%x\n", status));
return status;