commit | 8722c03222c88b0c5a7977d881a30224aee15daa | [log] [tgz] |
---|---|---|
author | Miguel Gazquez <miguel.gazquez@bootlin.com> | Thu Mar 06 16:18:14 2025 +0100 |
committer | Henrik Brix Andersen <henrik@brixandersen.dk> | Mon Mar 10 21:30:58 2025 +0100 |
tree | 7ddd56bc04c94f67b0d6cfcd78b29ecb5af894ad | |
parent | 9e53af0c6b593a33967e47b25b546f7ad29c82f3 [diff] |
drivers: udc: udc_skeleton: fix call to K_THREAD_STACK_DEFINE The udc_skeleton driver incorrectly calls `K_THREAD_STACK_DEFINE` with `CONFIG_UDC_SKELETON` instead of `CONFIG_UDC_SKELETON_STACK_SIZE`. This causes stack overflows when developing a driver based on this code. Fix the call to `K_THREAD_STACK_DEFINE`. Signed-off-by: Miguel Gazquez <miguel.gazquez@bootlin.com>