summaryrefslogtreecommitdiff
path: root/drivers/staging/media/atomisp/pci/atomisp_acc.c
diff options
context:
space:
mode:
authorAline Santana Cordeiro <alinesantanacordeiro@gmail.com>2021-04-14 17:06:06 +0300
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-05-10 12:36:35 +0300
commit848802da8d0443befd155926ff4184e6ebffb5c0 (patch)
tree98e4a675094a2f5af38181738eecbb4ab476a5d8 /drivers/staging/media/atomisp/pci/atomisp_acc.c
parentbbbcba0267e2faff32c62905219f1d3b81f75d30 (diff)
downloadlinux-848802da8d0443befd155926ff4184e6ebffb5c0.tar.xz
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: Aline Santana Cordeiro <alinesantanacordeiro@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/staging/media/atomisp/pci/atomisp_acc.c')
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp_acc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp_acc.c b/drivers/staging/media/atomisp/pci/atomisp_acc.c
index f638d0bd09fe..5e5faa4b3445 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_acc.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_acc.c
@@ -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;
}