Commit da2f912a authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'platform-drivers-x86-v4.5-3' of...

Merge tag 'platform-drivers-x86-v4.5-3' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86

Pull x86 platform driver fixes from Darren Hart:
 "Just two small fixes for the 4.5-rc cycle:

  intel_scu_ipcutil:
   - underflow in scu_reg_access()

  intel-hid:
   - fix incorrect entries in intel_hid_keymap"

* tag 'platform-drivers-x86-v4.5-3' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86:
  intel_scu_ipcutil: underflow in scu_reg_access()
  intel-hid: fix incorrect entries in intel_hid_keymap
parents 5de6ac75 b1d353ad
...@@ -41,8 +41,7 @@ static const struct key_entry intel_hid_keymap[] = { ...@@ -41,8 +41,7 @@ static const struct key_entry intel_hid_keymap[] = {
{ KE_KEY, 4, { KEY_HOME } }, { KE_KEY, 4, { KEY_HOME } },
{ KE_KEY, 5, { KEY_END } }, { KE_KEY, 5, { KEY_END } },
{ KE_KEY, 6, { KEY_PAGEUP } }, { KE_KEY, 6, { KEY_PAGEUP } },
{ KE_KEY, 4, { KEY_PAGEDOWN } }, { KE_KEY, 7, { KEY_PAGEDOWN } },
{ KE_KEY, 4, { KEY_HOME } },
{ KE_KEY, 8, { KEY_RFKILL } }, { KE_KEY, 8, { KEY_RFKILL } },
{ KE_KEY, 9, { KEY_POWER } }, { KE_KEY, 9, { KEY_POWER } },
{ KE_KEY, 11, { KEY_SLEEP } }, { KE_KEY, 11, { KEY_SLEEP } },
......
...@@ -49,7 +49,7 @@ struct scu_ipc_data { ...@@ -49,7 +49,7 @@ struct scu_ipc_data {
static int scu_reg_access(u32 cmd, struct scu_ipc_data *data) static int scu_reg_access(u32 cmd, struct scu_ipc_data *data)
{ {
int count = data->count; unsigned int count = data->count;
if (count == 0 || count == 3 || count > 4) if (count == 0 || count == 3 || count > 4)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment