[PATCH] staging: media: atomisp: remove unnecessary return in gdc_reg_store()
Raushan Kumar <[email protected]>
| Newsgroups | org.kernel.vger.linux-media,dev.linux.lists.linux-staging,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> --- 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