Commit 848802da authored by Aline Santana Cordeiro's avatar Aline Santana Cordeiro Committed by Mauro Carvalho Chehab

media: staging: media: atomisp: pci: Correct identation in block of...

media: staging: media: atomisp: pci: Correct identation in block of conditional statements in file atomisp_acc.c

Correct identation in block of conditional statements.
The conditional statement depends on the results of the
macro function "list_for_each_entry()".
Signed-off-by: default avatarAline Santana Cordeiro <alinesantanacordeiro@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent bbbcba02
......@@ -77,8 +77,8 @@ acc_get_fw(struct atomisp_sub_device *asd, unsigned int handle)
struct atomisp_acc_fw *acc_fw;
list_for_each_entry(acc_fw, &asd->acc.fw, list)
if (acc_fw->handle == handle)
return acc_fw;
if (acc_fw->handle == handle)
return acc_fw;
return NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment