diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 16:47:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 16:47:50 -0400 |
commit | 8eee93e2576c303b6071368456dcd6c9a5a021c9 (patch) | |
tree | 0c65d2dc160af900e0c87ebc4b41979c0b9075cf /include/linux/mfd/palmas.h | |
parent | 1a4ab084afaa8e5405a3e22aca21478ee3ca5d59 (diff) | |
parent | 16617535684faf9de30620de83667214297a36b8 (diff) |
Merge tag 'char-misc-4.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc updates from Greg KH:
"Here is the big char/misc driver update for 4.6-rc1.
The majority of the patches here is hwtracing and some new mic
drivers, but there's a lot of other driver updates as well. Full
details in the shortlog.
All have been in linux-next for a while with no reported issues"
* tag 'char-misc-4.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (238 commits)
goldfish: Fix build error of missing ioremap on UM
nvmem: mediatek: Fix later provider initialization
nvmem: imx-ocotp: Fix return value of imx_ocotp_read
nvmem: Fix dependencies for !HAS_IOMEM archs
char: genrtc: replace blacklist with whitelist
drivers/hwtracing: make coresight-etm-perf.c explicitly non-modular
drivers: char: mem: fix IS_ERROR_VALUE usage
char: xillybus: Fix internal data structure initialization
pch_phub: return -ENODATA if ROM can't be mapped
Drivers: hv: vmbus: Support kexec on ws2012 r2 and above
Drivers: hv: vmbus: Support handling messages on multiple CPUs
Drivers: hv: utils: Remove util transport handler from list if registration fails
Drivers: hv: util: Pass the channel information during the init call
Drivers: hv: vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload()
Drivers: hv: vmbus: remove code duplication in message handling
Drivers: hv: vmbus: avoid wait_for_completion() on crash
Drivers: hv: vmbus: don't loose HVMSG_TIMER_EXPIRED messages
misc: at24: replace memory_accessor with nvmem_device_read
eeprom: 93xx46: extend driver to plug into the NVMEM framework
eeprom: at25: extend driver to plug into the NVMEM framework
...
Diffstat (limited to 'include/linux/mfd/palmas.h')
-rw-r--r-- | include/linux/mfd/palmas.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h index c800dbc42079..5c9a1d44c125 100644 --- a/include/linux/mfd/palmas.h +++ b/include/linux/mfd/palmas.h | |||
@@ -580,7 +580,9 @@ struct palmas_usb { | |||
580 | int vbus_irq; | 580 | int vbus_irq; |
581 | 581 | ||
582 | int gpio_id_irq; | 582 | int gpio_id_irq; |
583 | int gpio_vbus_irq; | ||
583 | struct gpio_desc *id_gpiod; | 584 | struct gpio_desc *id_gpiod; |
585 | struct gpio_desc *vbus_gpiod; | ||
584 | unsigned long sw_debounce_jiffies; | 586 | unsigned long sw_debounce_jiffies; |
585 | struct delayed_work wq_detectid; | 587 | struct delayed_work wq_detectid; |
586 | 588 | ||
@@ -589,6 +591,7 @@ struct palmas_usb { | |||
589 | bool enable_vbus_detection; | 591 | bool enable_vbus_detection; |
590 | bool enable_id_detection; | 592 | bool enable_id_detection; |
591 | bool enable_gpio_id_detection; | 593 | bool enable_gpio_id_detection; |
594 | bool enable_gpio_vbus_detection; | ||
592 | }; | 595 | }; |
593 | 596 | ||
594 | #define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator) | 597 | #define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator) |