]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: staging: atomisp: Remove unnecessary return statement in void function
authorTomasz Unger <tomasz.unger@yahoo.pl>
Thu, 5 Mar 2026 13:45:27 +0000 (14:45 +0100)
committerSakari Ailus <sakari.ailus@linux.intel.com>
Wed, 20 May 2026 08:29:28 +0000 (11:29 +0300)
Remove redundant 'return;' at the end of void function
ia_css_dvs_statistics_get(). Void functions do not need an explicit
return statement at the end. No other occurrences in this file.

Found with checkpatch.pl --strict.

Signed-off-by: Tomasz Unger <tomasz.unger@yahoo.pl>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
drivers/staging/media/atomisp/pci/sh_css_param_dvs.c

index 9ccdb66de2df528fca8fc034ad4e2dc03b5c58b1..3d2cb2d25fdb895f519b24f3e48b412d5cc607e3 100644 (file)
@@ -269,5 +269,4 @@ ia_css_dvs_statistics_get(enum dvs_statistics_type type,
                ia_css_get_dvs2_statistics(host_stats->p_dvs2_statistics_host,
                                           isp_stats->p_dvs_statistics_isp);
        }
-       return;
 }