diff options
| author | hathach <[email protected]> | 2024-04-08 22:07:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-04-08 22:07:56 +0700 |
| commit | c3c06484560d0102366a3a1b1101c35301009f97 (patch) | |
| tree | 408f8d600c6b58fd1da77c0408182851c0f48ced /src/class/video/video_device.c | |
| parent | 47c12a07f2edf927eaa685ee8c32b222271d770f (diff) | |
add class driver deinit
Diffstat (limited to 'src/class/video/video_device.c')
| -rw-r--r-- | src/class/video/video_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/class/video/video_device.c b/src/class/video/video_device.c index 5306356ba..c30690232 100644 --- a/src/class/video/video_device.c +++ b/src/class/video/video_device.c @@ -1229,6 +1229,10 @@ void videod_init(void) { } } +bool videod_deinit(void) { + return true; +} + void videod_reset(uint8_t rhport) { (void) rhport; for (uint_fast8_t i = 0; i < CFG_TUD_VIDEO; ++i) { |
