summaryrefslogtreecommitdiff
path: root/board/ryu/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/ryu/board.c')
-rw-r--r--board/ryu/board.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/ryu/board.c b/board/ryu/board.c
index 7218a9f8fc..5c4755633b 100644
--- a/board/ryu/board.c
+++ b/board/ryu/board.c
@@ -211,10 +211,10 @@ BUILD_ASSERT(ARRAY_SIZE(usb_strings) == USB_STR_COUNT);
* stream endpoints.
*/
-QUEUE_CONFIG(ap_usart_to_usb, 64, uint8_t);
-QUEUE_CONFIG(usb_to_ap_usart, 64, uint8_t);
-QUEUE_CONFIG(sh_usart_to_usb, 64, uint8_t);
-QUEUE_CONFIG(usb_to_sh_usart, 64, uint8_t);
+static struct queue const ap_usart_to_usb = QUEUE_NULL(64, uint8_t);
+static struct queue const usb_to_ap_usart = QUEUE_NULL(64, uint8_t);
+static struct queue const sh_usart_to_usb = QUEUE_NULL(64, uint8_t);
+static struct queue const usb_to_sh_usart = QUEUE_NULL(64, uint8_t);
struct usb_stream_config const usb_ap_stream;
struct usb_stream_config const usb_sh_stream;