diff options
| author | Ha Thach <[email protected]> | 2023-02-22 17:35:07 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-22 17:35:07 +0700 |
| commit | 8fadaf01d3cb8d833ff427a7bd3c369a6d0937fc (patch) | |
| tree | 192d7e73278bef02ae7d576e8ba52fff4cdd1069 /src/device/usbd_control.c | |
| parent | 557bf82336311611ba3b06e57f48d03362f3d2c3 (diff) | |
| parent | 498989ee009c388a770e7a312ae04d0a51ba745a (diff) | |
Merge pull request #1919 from hathach/use-tu-static-for-fuzz
use tu_static instead of static _fuzz_thread
Diffstat (limited to 'src/device/usbd_control.c')
| -rw-r--r-- | src/device/usbd_control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/usbd_control.c b/src/device/usbd_control.c index 8b071d9c6..e709658b9 100644 --- a/src/device/usbd_control.c +++ b/src/device/usbd_control.c @@ -53,10 +53,10 @@ typedef struct usbd_control_xfer_cb_t complete_cb; } usbd_control_xfer_t; -static _fuzz_thread usbd_control_xfer_t _ctrl_xfer; +tu_static usbd_control_xfer_t _ctrl_xfer; CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN -static _fuzz_thread uint8_t _usbd_ctrl_buf[CFG_TUD_ENDPOINT0_SIZE]; +tu_static uint8_t _usbd_ctrl_buf[CFG_TUD_ENDPOINT0_SIZE]; //--------------------------------------------------------------------+ // Application API |
