Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Santiago Ruano Rincón and committed by
Hans Verkuil
9c1cde7e 5b1b37e9

+2 -4
+2 -4
drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_1.0/ia_css_sdis.host.c
··· 241 241 assert(isp_stats); 242 242 243 243 map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL); 244 - if (map) 245 - { 244 + if (map) { 246 245 hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size); 247 246 ia_css_translate_dvs_statistics(host_stats, map); 248 247 ia_css_isp_dvs_statistics_map_free(map); 249 - } else 250 - { 248 + } else { 251 249 IA_CSS_ERROR("out of memory"); 252 250 ret = -ENOMEM; 253 251 }