diff options
| author | Linus Torvalds <[email protected]> | 2013-11-24 10:45:29 -0800 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2013-11-24 10:45:29 -0800 | 
| commit | 76ae076f99a6f4538f8d6f06be9b87ecafc00a97 (patch) | |
| tree | da40601977dacba29f3fcbd87425f0c5c759906b /drivers/input/misc/hp_sdc_rtc.c | |
| parent | 4c1cc40a2d49500d84038ff751bc6cd183e729b5 (diff) | |
| parent | 5cf0eb9875cb26ebdc60d08444272b2ea219386e (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov:
 "A new driver for Surface 2.0/Pixelsense touchscreen and a couple of
  driver fixups"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
  MAINTAINERS - add keyboard driver to Hyper-V file list
  Input: atmel-wm97xx - fix compile error
  Input: hp_sdc_rtc - unlock on error in hp_sdc_rtc_read_i8042timer()
  Input: cyttsp4 -  remove unnecessary work pending test
  Input: add sur40 driver for Samsung SUR40 (aka MS Surface 2.0/Pixelsense)
Diffstat (limited to 'drivers/input/misc/hp_sdc_rtc.c')
| -rw-r--r-- | drivers/input/misc/hp_sdc_rtc.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/drivers/input/misc/hp_sdc_rtc.c b/drivers/input/misc/hp_sdc_rtc.c index 86b822806e95..45e0e3e55de2 100644 --- a/drivers/input/misc/hp_sdc_rtc.c +++ b/drivers/input/misc/hp_sdc_rtc.c @@ -180,7 +180,10 @@ static int64_t hp_sdc_rtc_read_i8042timer (uint8_t loadcmd, int numreg)  	if (WARN_ON(down_interruptible(&i8042tregs)))  		return -1; -	if (hp_sdc_enqueue_transaction(&t)) return -1; +	if (hp_sdc_enqueue_transaction(&t)) { +		up(&i8042tregs); +		return -1; +	}  	/* Sleep until results come back. */  	if (WARN_ON(down_interruptible(&i8042tregs))) |