summaryrefslogtreecommitdiff
path: root/src/uart.c
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-10-14 17:54:17 -0700
committer3gg <3gg@shellblade.net>2025-10-14 17:54:17 -0700
commitc099bcb7402421985e6e8c025e8cde591eaa073a (patch)
treeb78e46d44406909bb8f93fc655f1417fc9666c3c /src/uart.c
parent338bd46fb6dbcb8271102ddb6b896a335eb909dc (diff)
Add MAIL_T macro; read framebuffer allocation response
Diffstat (limited to 'src/uart.c')
-rw-r--r--src/uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uart.c b/src/uart.c
index 3b107f4..f8be797 100644
--- a/src/uart.c
+++ b/src/uart.c
@@ -35,7 +35,7 @@ enum
35}; 35};
36 36
37// A mailbox message with set clock rate of PL011 to 3MHz tag. 37// A mailbox message with set clock rate of PL011 to 3MHz tag.
38static const uint32_t __attribute__((aligned(MAIL_ALIGN))) UART_SET_CLK[9] = { 38static const MAIL_T uint32_t UART_SET_CLK[9] = {
39 9*4, 0, 0x38002, 12, 8, 2, 3000000, 0, 0 39 9*4, 0, 0x38002, 12, 8, 2, 3000000, 0, 0
40}; 40};
41 41