This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: staging: media: atomisp: Fixed "unsigned int *" rather than 
"unsigned *" declaration in variable declaration
Author:  Jonathan Bergh <bergh.jonat...@gmail.com>
Date:    Mon Feb 26 19:40:19 2024 +0000

This code fixes a code style issue where:
 * Checkpatch suggests using "unsigned int *" rather than a bare
   "unsigned *" declaration in the code

Link: https://lore.kernel.org/r/20240226194023.69070-3-bergh.jonat...@gmail.com

Signed-off-by: Jonathan Bergh <bergh.jonat...@gmail.com>
Signed-off-by: Hans de Goede <hdego...@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@kernel.org>

 drivers/staging/media/atomisp/pci/sh_css_sp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/staging/media/atomisp/pci/sh_css_sp.c 
b/drivers/staging/media/atomisp/pci/sh_css_sp.c
index e0e1405dfc69..05b9c9ea0a21 100644
--- a/drivers/staging/media/atomisp/pci/sh_css_sp.c
+++ b/drivers/staging/media/atomisp/pci/sh_css_sp.c
@@ -187,7 +187,7 @@ sh_css_sp_get_debug_state(struct sh_css_sp_debug_state 
*state)
 
        (void)HIVE_ADDR_sp_output; /* To get rid of warning in CRUN */
        for (i = 0; i < sizeof(*state) / sizeof(int); i++)
-               ((unsigned *)state)[i] = load_sp_array_uint(sp_output, i + 
offset);
+               ((unsigned int *)state)[i] = load_sp_array_uint(sp_output, i + 
offset);
 }
 
 #endif

Reply via email to