summaryrefslogtreecommitdiff
path: root/DuetPkg/DxeIpl
diff options
context:
space:
mode:
Diffstat (limited to 'DuetPkg/DxeIpl')
-rw-r--r--DuetPkg/DxeIpl/Debug.c2
-rw-r--r--DuetPkg/DxeIpl/SerialStatusCode.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/DuetPkg/DxeIpl/Debug.c b/DuetPkg/DxeIpl/Debug.c
index 950c06b11..1cb7e39c8 100644
--- a/DuetPkg/DxeIpl/Debug.c
+++ b/DuetPkg/DxeIpl/Debug.c
@@ -77,6 +77,6 @@ PrintString (
//
// All information also output to serial port.
//
- SerialPortWrite (PrintBuffer, Index);
+ SerialPortWrite ((UINT8 *) PrintBuffer, Index);
}
diff --git a/DuetPkg/DxeIpl/SerialStatusCode.c b/DuetPkg/DxeIpl/SerialStatusCode.c
index 27e8644b3..159593238 100644
--- a/DuetPkg/DxeIpl/SerialStatusCode.c
+++ b/DuetPkg/DxeIpl/SerialStatusCode.c
@@ -675,7 +675,7 @@ Returns:
//
// Callout to platform Lib function to do print.
//
- SerialPortWrite (Buffer, CharCount);
+ SerialPortWrite ((UINT8 *) Buffer, CharCount);
}
//
@@ -727,7 +727,7 @@ Returns:
Instance
);
- SerialPortWrite (Buffer, CharCount);
+ SerialPortWrite ((UINT8 *) Buffer, CharCount);
}
}