mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
input: Adjust structure of code in process_modifier()
Move all the '!release' code into one block so that it is clear that it only applies on key release. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
b1d7a1875e
commit
a683d0d347
1 changed files with 13 additions and 12 deletions
|
@ -236,7 +236,6 @@ static struct input_key_xlate *process_modifier(struct input_config *config,
|
||||||
int key, int release)
|
int key, int release)
|
||||||
{
|
{
|
||||||
struct input_key_xlate *table;
|
struct input_key_xlate *table;
|
||||||
int flip = -1;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* Start with the main table, and see what modifiers change it */
|
/* Start with the main table, and see what modifiers change it */
|
||||||
|
@ -251,6 +250,8 @@ static struct input_key_xlate *process_modifier(struct input_config *config,
|
||||||
|
|
||||||
/* Handle the lighted keys */
|
/* Handle the lighted keys */
|
||||||
if (!release) {
|
if (!release) {
|
||||||
|
int flip = -1;
|
||||||
|
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case KEY_SCROLLLOCK:
|
case KEY_SCROLLLOCK:
|
||||||
flip = FLAG_SCROLL_LOCK;
|
flip = FLAG_SCROLL_LOCK;
|
||||||
|
@ -262,19 +263,19 @@ static struct input_key_xlate *process_modifier(struct input_config *config,
|
||||||
flip = FLAG_CAPS_LOCK;
|
flip = FLAG_CAPS_LOCK;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (flip != -1) {
|
if (flip != -1) {
|
||||||
int leds = 0;
|
int leds = 0;
|
||||||
|
|
||||||
config->leds ^= flip;
|
config->leds ^= flip;
|
||||||
if (config->flags & FLAG_NUM_LOCK)
|
if (config->flags & FLAG_NUM_LOCK)
|
||||||
leds |= INPUT_LED_NUM;
|
leds |= INPUT_LED_NUM;
|
||||||
if (config->flags & FLAG_CAPS_LOCK)
|
if (config->flags & FLAG_CAPS_LOCK)
|
||||||
leds |= INPUT_LED_CAPS;
|
leds |= INPUT_LED_CAPS;
|
||||||
if (config->flags & FLAG_SCROLL_LOCK)
|
if (config->flags & FLAG_SCROLL_LOCK)
|
||||||
leds |= INPUT_LED_SCROLL;
|
leds |= INPUT_LED_SCROLL;
|
||||||
config->leds = leds;
|
config->leds = leds;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return table;
|
return table;
|
||||||
|
|
Loading…
Reference in a new issue