diff options
| author | Rocky04 <[email protected]> | 2024-01-15 18:23:59 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-15 18:23:59 +0100 |
| commit | e0ebece2c76a77457ea67d66065d08750ae77eaa (patch) | |
| tree | 02efa15e356e48d82122e4b40ef0c4b37caff66c | |
| parent | 783a4f002b3c876aef6077ea57d0060b072e8ca9 (diff) | |
Missed static keyword
| -rw-r--r-- | src/device/usbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c index 661ba95a3..83217a869 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -1098,7 +1098,7 @@ static bool process_get_descriptor(uint8_t rhport, tusb_control_request_t const } } -bool process_test_mode_cb(uint8_t rhport, uint8_t stage, tusb_control_request_t const * request) +static bool process_test_mode_cb(uint8_t rhport, uint8_t stage, tusb_control_request_t const * request) { // At this point it should already be ensured that dcd_enter_test_mode() is defined |
