mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 12:35:52 +02:00
media: staging: media: atomisp: Fixed "unsigned int *" rather than "unsigned *" declaration in variable declaration
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.jonathan@gmail.com Signed-off-by: Jonathan Bergh <bergh.jonathan@gmail.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
0a8b308bdf
commit
cf41003249
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user