drivers/video: Store device operations table

Fix a bug which the device operation structure is not stored in
video_initialize().
This commit is contained in:
SPRESENSE 2020-07-27 13:54:26 +09:00 committed by Alin Jerpelea
parent 3befe16f52
commit 15be5e5e11

View File

@ -1499,6 +1499,8 @@ int video_initialize(FAR const char *devpath,
video_handler = video_register(devpath);
g_video_devops = devops;
is_initialized = true;
return OK;
@ -1513,6 +1515,8 @@ int video_uninitialize(void)
video_unregister(video_handler);
g_video_devops = NULL;
is_initialized = false;
return OK;