lkml.org 
[lkml]   [2016]   [Jul]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[GIT PULL] char/misc driver patches for 4.8-rc1
The following changes since commit 33688abb2802ff3a230bd2441f765477b94cc89e:

Linux 4.7-rc4 (2016-06-19 21:30:02 -0700)

are available in the git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git/ tags/char-misc-4.8-rc1

for you to fetch changes up to 45c7d71e1675f7ef73acab2738dd6f220005aa2a:

Merge tag 'lkdtm-next' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux into char-misc-testing (2016-07-17 08:29:53 +0900)

----------------------------------------------------------------
Char/Misc driver patches for 4.8-rc1

Here is the big char/misc driver update for 4.8-rc1.

Not a lot of stuff, but it's all over the place, full details are in the
shortlog below. All of these have been in linux-next with no reported
issues for a while.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Alexander Shishkin (6):
stm class: Add runtime power management handling
intel_th: Add runtime power management handling
intel_th: gth: Fix a source comment
intel_th: Document output device callbacks
intel_th: Fix a deadlock in modprobing
intel_th: pci: Add Kaby Lake PCH-H support

Alexander Usyskin (1):
mei: drop wr_msg from the mei_dev structure

Arnd Bergmann (2):
extcon: link devres into core module
lkdtm: hide unused functions

Chanwoo Choi (7):
power: axp288_charger: Replace deprecatd API of extcon
extcon: Remove the deprecated extcon functions
Merge branch 'ib-extcon-powersupply-4.8' into extcon-next
extcon: Move struct extcon_cable from header file to core
extcon: Split out the resource-managed functions from extcon core
extcon: Add resource-managed functions to register extcon notifier
extcon: Fix the wrong description about extcon_set/get_cable_state_()

Charles Keepax (1):
extcon: arizona: Update binding docs to mention new defines for GPSW

Dan Carpenter (1):
dsp56k: prevent a harmless underflow

Fengguang Wu (1):
chardev: add missing line break in pr_warn

Greg Kroah-Hartman (7):
Merge tag 'lkdtm-next' of git://git.kernel.org/.../kees/linux into char-misc-testing
Merge 4.7-rc4 into char-misc-next
Merge tag 'lkdtm-next' of git://git.kernel.org/.../kees/linux into char-misc-testing
Merge tag 'extcon-next-for-4.8' of git://git.kernel.org/.../chanwoo/extcon into char-misc-testing
Merge tag 'stm-for-greg-20160701' of git://git.kernel.org/.../ash/stm into char-misc-testing
Merge tag 'stm-for-greg-20160714' of git://git.kernel.org/.../ash/stm into char-misc-next
Merge tag 'lkdtm-next' of git://git.kernel.org/.../kees/linux into char-misc-testing

Grygorii Strashko (1):
extcon: usb-gpio: switch to use pm wakeirq apis

Guenter Roeck (1):
nvmem: Declare nvmem_cell_read() consistently

Kees Cook (18):
lkdtm: split build into multiple source files
lkdtm: clean up after rename
lkdtm: add function for testing .rodata section
lkdtm: add usercopy tests
lkdtm: split atomic test into over and underflow
lkdtm: add usercopy test for blocking kernel text
lkdtm: drop "alloc_size" parameter
lkdtm: split usercopy tests to separate file
lkdtm: split memory permissions tests to separate file
lkdtm: split heap corruption tests to separate file
lkdtm: split remaining logic bug tests to separate file
lkdtm: remove intentional off-by-one array access
lkdtm: rename "count" to "crash_count"
lkdtm: rename globals for clarity
lkdtm: reorganize module paramaters
lkdtm: move jprobe entry points to start of source
lkdtm: use struct arrays instead of enums
lkdtm: silence warnings about function declarations

Lu Baolu (2):
extcon: usb-gpio: add device binding for platform device
extcon: usb-gpio: add support for ACPI gpio interface

Peng Fan (1):
nvmem: imx-ocotp: handling clock

Peter Chen (1):
extcon: add missing of_node_put after calling of_parse_phandle

Roger Quadros (1):
extcon: usb-gpio: Don't miss event during suspend/resume

Srinivas Kandagatla (4):
nvmem: mtk-efuse: remove nvmem regmap dependency
nvmem: mxs-ocotp: remove nvmem regmap dependency
nvmem: imx-ocotp: add COMPILE_TEST for proper test coverage
nvmem: imx-ocotp: Fix assignment warning.

Stephen Boyd (1):
extcon: Check for incorrect connection type in notifier register

Venkat Reddy Talla (1):
extcon: adc-jack: add suspend/resume support

.../devicetree/bindings/extcon/extcon-arizona.txt | 3 +-
MAINTAINERS | 2 +-
drivers/char/dsp56k.c | 2 +-
drivers/extcon/Makefile | 3 +-
drivers/extcon/devres.c | 216 +++++
drivers/extcon/extcon-adc-jack.c | 34 +
drivers/extcon/extcon-usb-gpio.c | 32 +-
drivers/extcon/extcon.c | 344 +------
drivers/hwtracing/intel_th/core.c | 89 +-
drivers/hwtracing/intel_th/gth.c | 18 +-
drivers/hwtracing/intel_th/intel_th.h | 6 +
drivers/hwtracing/intel_th/pci.c | 5 +
drivers/hwtracing/stm/core.c | 52 +
drivers/misc/Makefile | 14 +
drivers/misc/lkdtm.c | 1023 --------------------
drivers/misc/lkdtm.h | 60 ++
drivers/misc/lkdtm_bugs.c | 148 +++
drivers/misc/lkdtm_core.c | 544 +++++++++++
drivers/misc/lkdtm_heap.c | 142 +++
drivers/misc/lkdtm_perms.c | 199 ++++
drivers/misc/lkdtm_rodata.c | 10 +
drivers/misc/lkdtm_usercopy.c | 313 ++++++
drivers/misc/mei/hbm.c | 137 ++-
drivers/misc/mei/mei_dev.h | 10 +-
drivers/nvmem/Kconfig | 4 +-
drivers/nvmem/imx-ocotp.c | 17 +-
drivers/nvmem/mtk-efuse.c | 47 +-
drivers/nvmem/mxs-ocotp.c | 83 +-
drivers/power/axp288_charger.c | 77 +-
fs/char_dev.c | 2 +-
include/linux/extcon.h | 115 +--
include/linux/extcon/extcon-adc-jack.h | 2 +
include/linux/nvmem-consumer.h | 2 +-
33 files changed, 2147 insertions(+), 1608 deletions(-)
create mode 100644 drivers/extcon/devres.c
delete mode 100644 drivers/misc/lkdtm.c
create mode 100644 drivers/misc/lkdtm.h
create mode 100644 drivers/misc/lkdtm_bugs.c
create mode 100644 drivers/misc/lkdtm_core.c
create mode 100644 drivers/misc/lkdtm_heap.c
create mode 100644 drivers/misc/lkdtm_perms.c
create mode 100644 drivers/misc/lkdtm_rodata.c
create mode 100644 drivers/misc/lkdtm_usercopy.c

\
 
 \ /
  Last update: 2016-07-25 01:01    [W:0.053 / U:0.916 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site