[PATCH] staging: media: atomisp: remove unnecessary return in gdc_reg_store()
From: Raushan Kumar
Date: Sat Aug 15 2026 - 03:02:18 EST
Remove the return statement at the end of the void function
gdc_reg_store(), as it's not needed since the function returns
implicitly, as flagged by checkpatch.pl.
Signed-off-by: Raushan Kumar <mitramaurya80@xxxxxxxxx>
---
drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.c b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.c
index b31e3809c0e4..c60f53514553 100644
--- a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.c
+++ b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.c
@@ -96,5 +96,4 @@ static inline void gdc_reg_store(
const hrt_data value)
{
ia_css_device_store_uint32(GDC_BASE[ID] + reg * sizeof(hrt_data), value);
- return;
}
--
2.55.0