Merge "msm: camera: common: va_end should follow va_start" into camera-kernel.lnx.1.0

This commit is contained in:
Camera Software Integration 2019-11-06 07:06:55 -08:00 коммит произвёл Gerrit - the friendly Code Review server
Родитель c7c5cbb068 bef4415dc8
Коммит 72858b5ccb
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2017-2018, The Linux Foundataion. All rights reserved.
* Copyright (c) 2017-2019, The Linux Foundataion. All rights reserved.
*/
#include <linux/io.h>
@ -115,6 +115,7 @@ void cam_debug_log(unsigned int module_id, const char *func, const int line,
pr_info("CAM_DBG: %s: %s: %d: %s\n",
cam_get_module_name(module_id),
func, line, str_buffer);
va_end(args);
}
va_end(args);
}