1
0
Fork 0

Input: drivers/char/keyboard.c - small cleanup in k_cur()

To save a char pointer in the final assembly change to alternate string
form.

Signed-off-by: Brandon Philips <brandon@ifup.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
hifive-unleashed-5.1
Brandon Philips 2006-11-04 22:09:08 -05:00 committed by Dmitry Torokhov
parent 0fea0e9a9c
commit e52b29c2a6
1 changed files with 1 additions and 1 deletions

View File

@ -710,7 +710,7 @@ static void k_fn(struct vc_data *vc, unsigned char value, char up_flag)
static void k_cur(struct vc_data *vc, unsigned char value, char up_flag)
{
static const char *cur_chars = "BDCA";
static const char cur_chars[] = "BDCA";
if (up_flag)
return;