mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
staging: media: sdis: move open braces to the previous line
Fix checkpatch error "ERROR: that open brace { should be on the previous
line" in ia_css_sdis.host.c:253 and :258.
Signed-off-by: Santiago Ruano Rincón <santiagorr@riseup.net>
Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
parent
5b1b37e97b
commit
9c1cde7eb0
|
|
@ -241,13 +241,11 @@ ia_css_get_dvs_statistics(
|
|||
assert(isp_stats);
|
||||
|
||||
map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL);
|
||||
if (map)
|
||||
{
|
||||
if (map) {
|
||||
hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size);
|
||||
ia_css_translate_dvs_statistics(host_stats, map);
|
||||
ia_css_isp_dvs_statistics_map_free(map);
|
||||
} else
|
||||
{
|
||||
} else {
|
||||
IA_CSS_ERROR("out of memory");
|
||||
ret = -ENOMEM;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user