aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorAzael Avalos <coproscefalo@gmail.com>2015-07-22 21:37:46 -0400
committerDarren Hart <dvhart@linux.intel.com>2015-07-24 17:23:19 -0400
commitd50c9005d32b4eda6e11f7ec4f1b00a93088e0ca (patch)
tree77b9315ec1b63290f47388c615d890f97361542e /drivers/platform
parentd7e4f2e2ca392bce468718bcbba808108d81d501 (diff)
toshiba_acpi: Reorder toshiba_acpi_alt_keymap entries
This patch simply reorders the entries found in the new keymap by ascending order, this is simply a cosmetic change, no functionality was modified. Signed-off-by: Azael Avalos <coproscefalo@gmail.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/toshiba_acpi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index 90d8cb1c2e27..6013a11caeea 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -246,16 +246,16 @@ static const struct key_entry toshiba_acpi_keymap[] = {
246}; 246};
247 247
248static const struct key_entry toshiba_acpi_alt_keymap[] = { 248static const struct key_entry toshiba_acpi_alt_keymap[] = {
249 { KE_KEY, 0x157, { KEY_MUTE } },
250 { KE_KEY, 0x102, { KEY_ZOOMOUT } }, 249 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
251 { KE_KEY, 0x103, { KEY_ZOOMIN } }, 250 { KE_KEY, 0x103, { KEY_ZOOMIN } },
252 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } }, 251 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
253 { KE_KEY, 0x139, { KEY_ZOOMRESET } }, 252 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
254 { KE_KEY, 0x13e, { KEY_SWITCHVIDEOMODE } },
255 { KE_KEY, 0x13c, { KEY_BRIGHTNESSDOWN } }, 253 { KE_KEY, 0x13c, { KEY_BRIGHTNESSDOWN } },
256 { KE_KEY, 0x13d, { KEY_BRIGHTNESSUP } }, 254 { KE_KEY, 0x13d, { KEY_BRIGHTNESSUP } },
257 { KE_KEY, 0x158, { KEY_WLAN } }, 255 { KE_KEY, 0x13e, { KEY_SWITCHVIDEOMODE } },
258 { KE_KEY, 0x13f, { KEY_TOUCHPAD_TOGGLE } }, 256 { KE_KEY, 0x13f, { KEY_TOUCHPAD_TOGGLE } },
257 { KE_KEY, 0x157, { KEY_MUTE } },
258 { KE_KEY, 0x158, { KEY_WLAN } },
259 { KE_END, 0 }, 259 { KE_END, 0 },
260}; 260};
261 261