Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/dtor/input

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
  Input: add KEY_RFKILL
  Input: i8042 - fix KBC jam during hibernate
  • Loading branch information
torvalds committed Feb 18, 2010
2 parents 2fa298c + 3b77fd8 commit 83c5aac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/input/serio/i8042.c
Original file line number Diff line number Diff line change
Expand Up @@ -1161,9 +1161,17 @@ static int i8042_pm_restore(struct device *dev)
return 0;
}

static int i8042_pm_thaw(struct device *dev)
{
i8042_interrupt(0, NULL);

return 0;
}

static const struct dev_pm_ops i8042_pm_ops = {
.suspend = i8042_pm_reset,
.resume = i8042_pm_restore,
.thaw = i8042_pm_thaw,
.poweroff = i8042_pm_reset,
.restore = i8042_pm_restore,
};
Expand Down
1 change: 1 addition & 0 deletions include/linux/input.h
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ struct input_absinfo {
#define KEY_DISPLAY_OFF 245 /* display device to off state */

#define KEY_WIMAX 246
#define KEY_RFKILL 247 /* Key that controls all radios */

/* Range 248 - 255 is reserved for special needs of AT keyboard driver */

Expand Down

0 comments on commit 83c5aac

Please sign in to comment.