[PATCH] staging: media: atomisp: pipe_stagedesc: Fix leading space indentation

Giorgi Tchankvetadze posted 1 patch 1 month ago
.../pci/camera/pipe/src/pipe_stagedesc.c      | 32 +++++++++----------
1 file changed, 16 insertions(+), 16 deletions(-)
[PATCH] staging: media: atomisp: pipe_stagedesc: Fix leading space indentation
Posted by Giorgi Tchankvetadze 1 month ago
Fix lines starting with spaces instead of tabs to comply with the
kernel coding style.

No functional change.

Signed-off-by: Giorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
---
 .../pci/camera/pipe/src/pipe_stagedesc.c      | 32 +++++++++----------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c b/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
index a9f736398f50..8e31981f31b4 100644
--- a/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
+++ b/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
@@ -9,11 +9,11 @@
 #include "ia_css_debug.h"
 
 void ia_css_pipe_get_generic_stage_desc(
-    struct ia_css_pipeline_stage_desc *stage_desc,
-    struct ia_css_binary *binary,
-    struct ia_css_frame *out_frame[],
-    struct ia_css_frame *in_frame,
-    struct ia_css_frame *vf_frame)
+	struct ia_css_pipeline_stage_desc *stage_desc,
+	struct ia_css_binary *binary,
+	struct ia_css_frame *out_frame[],
+	struct ia_css_frame *in_frame,
+	struct ia_css_frame *vf_frame)
 {
 	unsigned int i;
 
@@ -41,13 +41,13 @@ void ia_css_pipe_get_generic_stage_desc(
 }
 
 void ia_css_pipe_get_firmwares_stage_desc(
-    struct ia_css_pipeline_stage_desc *stage_desc,
-    struct ia_css_binary *binary,
-    struct ia_css_frame *out_frame[],
-    struct ia_css_frame *in_frame,
-    struct ia_css_frame *vf_frame,
-    const struct ia_css_fw_info *fw,
-    unsigned int mode)
+	struct ia_css_pipeline_stage_desc *stage_desc,
+	struct ia_css_binary *binary,
+	struct ia_css_frame *out_frame[],
+	struct ia_css_frame *in_frame,
+	struct ia_css_frame *vf_frame,
+	const struct ia_css_fw_info *fw,
+	unsigned int mode)
 {
 	unsigned int i;
 
@@ -66,10 +66,10 @@ void ia_css_pipe_get_firmwares_stage_desc(
 }
 
 void ia_css_pipe_get_sp_func_stage_desc(
-    struct ia_css_pipeline_stage_desc *stage_desc,
-    struct ia_css_frame *out_frame,
-    enum ia_css_pipeline_stage_sp_func sp_func,
-    unsigned int max_input_width)
+	struct ia_css_pipeline_stage_desc *stage_desc,
+	struct ia_css_frame *out_frame,
+	enum ia_css_pipeline_stage_sp_func sp_func,
+	unsigned int max_input_width)
 {
 	unsigned int i;
 
-- 
2.52.0
Re: [PATCH] staging: media: atomisp: pipe_stagedesc: Fix leading space indentation
Posted by Dan Carpenter 1 month ago
On Sat, Mar 07, 2026 at 04:02:34PM +0400, Giorgi Tchankvetadze wrote:
> Fix lines starting with spaces instead of tabs to comply with the
> kernel coding style.
> 
> No functional change.
> 
> Signed-off-by: Giorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
> ---
>  .../pci/camera/pipe/src/pipe_stagedesc.c      | 32 +++++++++----------
>  1 file changed, 16 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c b/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
> index a9f736398f50..8e31981f31b4 100644
> --- a/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
> +++ b/drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.c
> @@ -9,11 +9,11 @@
>  #include "ia_css_debug.h"
>  
>  void ia_css_pipe_get_generic_stage_desc(
> -    struct ia_css_pipeline_stage_desc *stage_desc,
> -    struct ia_css_binary *binary,
> -    struct ia_css_frame *out_frame[],
> -    struct ia_css_frame *in_frame,
> -    struct ia_css_frame *vf_frame)
> +	struct ia_css_pipeline_stage_desc *stage_desc,
> +	struct ia_css_binary *binary,
> +	struct ia_css_frame *out_frame[],
> +	struct ia_css_frame *in_frame,
> +	struct ia_css_frame *vf_frame)

Same feedback.

regards,
dan carpenter