]> www.infradead.org Git - users/jedix/linux-maple.git/commit
sparc64: Fix incorrect function signature and add prototype for prom_cif_init
authorAndreas Larsson <andreas@gaisler.com>
Wed, 10 Jul 2024 09:41:53 +0000 (11:41 +0200)
committerAndreas Larsson <andreas@gaisler.com>
Thu, 11 Jul 2024 13:58:28 +0000 (15:58 +0200)
commita6c3ea1ec96307dbfbb2f16d96c674c5cc80f445
tree8fed16a501a39839a090acbb4354fe4c6373af45
parent4c207db87d003c0dd1c59e41b355ab0a14f7a445
sparc64: Fix incorrect function signature and add prototype for prom_cif_init

Remove the unused cif_stack argument and add a protype in oplib_64.h
Commit ef3e035c3a9b ("sparc64: Fix register corruption in top-most
kernel stack frame during boot.") removed the cif_stack argument to
prom_cif init in the declaration at the caller site and the usage of it
within prom_cif_init, but not in the function signature of the function
itself.

This also fixes the following warning:
arch/sparc/prom/p1275.c:52:6: warning: no previous prototype for ‘prom_cif_init’

Fixes: ef3e035c3a9b ("sparc64: Fix register corruption in top-most kernel stack frame during boot.")
Link: https://lore.kernel.org/r/20240710094155.458731-3-andreas@gaisler.com
Signed-off-by: Andreas Larsson <andreas@gaisler.com>
arch/sparc/include/asm/oplib_64.h
arch/sparc/prom/init_64.c
arch/sparc/prom/p1275.c