parisc: avoid c23 'nullptr' idenitifier
authorArnd Bergmann <arnd@arndb.de>
Mon, 12 Feb 2024 11:20:51 +0000 (12:20 +0100)
committerHelge Deller <deller@gmx.de>
Tue, 27 Feb 2024 21:51:44 +0000 (22:51 +0100)
commitcf159848860d38c2f2509ec19d595f5490ed03e5
tree094633d63b100bbb1ce221998595071494fd7be7
parent94a1b192290c9fdb33085ecacf82afb27bd63fa8
parisc: avoid c23 'nullptr' idenitifier

Starting in c23, this is a reserved keyword, so in the future, using it
will start causing build failures:

arch/parisc/math-emu/frnd.c:36:23: error: expected ';', ',' or ')' before 'nullptr'

Since I can't think of a good replacement name, add a leading underscore
to the function argument to avoid this namespace conflict. Apparently
all of these arguments are unused.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/math-emu/dfsqrt.c
arch/parisc/math-emu/fcnvff.c
arch/parisc/math-emu/fcnvfu.c
arch/parisc/math-emu/fcnvfut.c
arch/parisc/math-emu/fcnvfx.c
arch/parisc/math-emu/fcnvfxt.c
arch/parisc/math-emu/fcnvuf.c
arch/parisc/math-emu/fcnvxf.c
arch/parisc/math-emu/frnd.c
arch/parisc/math-emu/sfsqrt.c