diff options
author | 3gg <3gg@shellblade.net> | 2025-10-14 17:54:17 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-10-14 17:54:17 -0700 |
commit | c099bcb7402421985e6e8c025e8cde591eaa073a (patch) | |
tree | b78e46d44406909bb8f93fc655f1417fc9666c3c /src/uart.c | |
parent | 338bd46fb6dbcb8271102ddb6b896a335eb909dc (diff) |
Add MAIL_T macro; read framebuffer allocation response
Diffstat (limited to 'src/uart.c')
-rw-r--r-- | src/uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |
38 | static const uint32_t __attribute__((aligned(MAIL_ALIGN))) UART_SET_CLK[9] = { | 38 | static 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 | ||