diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/camera/CameraHAL.cpp | 1 | ||||
-rw-r--r-- | modules/usbcamera/CameraHAL.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/camera/CameraHAL.cpp b/modules/camera/CameraHAL.cpp index 06f308f..62ee6d4 100644 --- a/modules/camera/CameraHAL.cpp +++ b/modules/camera/CameraHAL.cpp @@ -186,6 +186,7 @@ camera_module_t HAL_MODULE_INFO_SYM __attribute__ ((visibility("default"))) = { get_vendor_tag_ops : get_vendor_tag_ops, open_legacy : NULL, set_torch_mode : NULL, + init : NULL, reserved : {0}, }; } // extern "C" diff --git a/modules/usbcamera/CameraHAL.cpp b/modules/usbcamera/CameraHAL.cpp index 98111ef..652e937 100644 --- a/modules/usbcamera/CameraHAL.cpp +++ b/modules/usbcamera/CameraHAL.cpp @@ -147,6 +147,7 @@ camera_module_t HAL_MODULE_INFO_SYM __attribute__ ((visibility("default"))) = { get_vendor_tag_ops : NULL, open_legacy : NULL, set_torch_mode : NULL, + init : NULL, reserved : {0}, }; } // extern "C" |