carol: fix control board request struct

This commit is contained in:
2023-03-30 03:55:40 -04:00
parent 301a0e0ce7
commit 8c97dc09c0
3 changed files with 95 additions and 44 deletions

View File

@ -71,7 +71,7 @@ static HRESULT touch_handle_irp_locked(struct irp *irp)
hr = carol_dll.touch_init();
if (FAILED(hr)) {
dprintf("Touchscreen: Backend DLL error: %x\n", (int) hr);
dprintf("Touchscreen: Backend DLL error: %X\n", (int) hr);
return hr;
}
@ -91,7 +91,7 @@ static HRESULT touch_handle_irp_locked(struct irp *irp)
hr = touch_frame_decode(&req, &touch_uart.written);
if (FAILED(hr)) {
dprintf("Touchscreen: Deframe Error: %x\n", (int) hr);
dprintf("Touchscreen: Deframe Error: %X\n", (int) hr);
return hr;
}