tty: hvsi: remove an extra variable from hvsi_write()
authorJiri Slaby <jirislaby@kernel.org>
Mon, 31 Jul 2023 08:02:37 +0000 (10:02 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 31 Jul 2023 15:16:05 +0000 (17:16 +0200)
commitd3352ab0a9701a6d4c88b814815d7320c339f4a8
treedc52c35542c7411ec186e60b81580ef32d647e42
parent659705d0a6992892bf3713bccf91ba43111aa71e
tty: hvsi: remove an extra variable from hvsi_write()

'source' is the same as 'buf'. Rename the parameter ('buf') to
'source' and drop the local variable.

Likely, the two were introduced to have a different type. But 'char' and
'unsigned char' are the same in the kernel for a long time.

Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Cc: linuxppc-dev@lists.ozlabs.org
Link: https://lore.kernel.org/r/20230731080244.2698-4-jirislaby@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/hvc/hvsi.c