msm: camera: Fix strict-prototypes error

Change-Id: Iaad4cda7407ea12558a2d4a0f4acb4586bed5d0a
This commit is contained in:
LuK1337 2023-10-20 09:39:20 +02:00
parent 546c833a9c
commit 06fbccbb01
2 changed files with 2 additions and 2 deletions

View File

@ -3523,7 +3523,7 @@ static int cam_ope_mgr_hw_open_u(void *hw_priv, void *fw_download_args)
return rc;
}
static cam_ope_mgr_hw_close_u(void *hw_priv, void *hw_close_args)
static int cam_ope_mgr_hw_close_u(void *hw_priv, void *hw_close_args)
{
struct cam_ope_hw_mgr *hw_mgr;
int rc = 0;

View File

@ -19,7 +19,7 @@ module_param(debug_type, uint, 0644);
struct camera_debug_settings cam_debug;
const struct camera_debug_settings *cam_debug_get_settings()
const struct camera_debug_settings *cam_debug_get_settings(void)
{
return &cam_debug;
}