]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - drivers/input/input.c
input: Change LED state bits to conform i8042 compatible keyboard
[people/ms/u-boot.git] / drivers / input / input.c
index e02e2643c9f2a385d22e7cc2435d07f624840638..526769692be8550b5b62f9b60ab3c3d35c450ecc 100644 (file)
@@ -19,9 +19,9 @@
 
 enum {
        /* These correspond to the lights on the keyboard */
-       FLAG_NUM_LOCK           = 1 << 0,
-       FLAG_CAPS_LOCK          = 1 << 1,
-       FLAG_SCROLL_LOCK        = 1 << 2,
+       FLAG_SCROLL_LOCK        = 1 << 0,
+       FLAG_NUM_LOCK           = 1 << 1,
+       FLAG_CAPS_LOCK          = 1 << 2,
 
        /* Special flag ORed with key code to indicate release */
        KEY_RELEASE             = 1 << 15,