Hi Linus, Please pull the watchdog changes for the v4.19 release cycle. This series contains: * MEN 16z069 IP-Core: Add driver * renesas-wdt: Add support for the R8A77990 wdt * stm32_iwdg: Add stm32mp1 support and pclk feature * sp805_wdt, orion_wdt, sprd_wdt: add several improvements * imx2_wdt, stmp3xxx: Switch to SPDX identifier The output from git request-pull: ---------------------------------------------------------------- The following changes since commit 9d3cce1e8b8561fed5f383d22a4d6949db4eadbe: Linux 4.18-rc5 (2018-07-15 12:49:31 -0700) are available in the git repository at: git://www.linux-watchdog.org/linux-watchdog.git tags/linux-watchdog-4.19-rc1 for you to fetch changes up to 12aea518a202bc7c947553840f1d93f8129b41b2: watchdog: fix dependencies of menz69_wdt.o (2018-08-06 17:12:42 +0200) ---------------------------------------------------------------- linux-watchdog 4.19-rc1 tag ---------------------------------------------------------------- Fabio Estevam (2): watchdog: imx2_wdt: Switch to SPDX identifier watchdog: stmp3xxx: Switch to SPDX identifier Johannes Thumshirn (2): watchdog: add driver for the MEN 16z069 IP-Core watchdog: fix dependencies of menz69_wdt.o Ludovic Barre (2): dt-bindings: watchdog: add stm32mp1 support watchdog: stm32: add pclk feature for stm32mp1 Masaharu Hayakawa (1): dt-bindings: watchdog: renesas-wdt: Add support for the R8A77990 wdt Maxim Kochetkov (1): watchdog: orion_wdt: Mark watchdog as active when running at probe Ray Jui (4): dt-bindings: watchdog: Consolidate SP805 binding docs dt-bindings: watchdog: Add optional 'timeout-sec' property for sp805 watchdog: sp805: add 'timeout-sec' DT property support watchdog: sp805: set WDOG_HW_RUNNING when appropriate Srinath Mannam (1): watchdog: sp805: Add clock-frequency property Wei Yongjun (1): watchdog: sprd_wdt: Remove redundant dev_err call in sprd_wdt_probe() .../devicetree/bindings/watchdog/arm,sp805.txt | 29 +++- .../devicetree/bindings/watchdog/renesas-wdt.txt | 1 + .../devicetree/bindings/watchdog/sp805-wdt.txt | 31 ---- .../devicetree/bindings/watchdog/st,stm32-iwdg.txt | 13 +- MAINTAINERS | 6 + drivers/watchdog/Kconfig | 10 ++ drivers/watchdog/Makefile | 1 + drivers/watchdog/imx2_wdt.c | 5 +- drivers/watchdog/menz69_wdt.c | 170 +++++++++++++++++++++ drivers/watchdog/orion_wdt.c | 2 + drivers/watchdog/sp805_wdt.c | 63 ++++++-- drivers/watchdog/sprd_wdt.c | 4 +- drivers/watchdog/stm32_iwdg.c | 116 +++++++++----- drivers/watchdog/stmp3xxx_rtc_wdt.c | 5 +- 14 files changed, 351 insertions(+), 105 deletions(-) delete mode 100644 Documentation/devicetree/bindings/watchdog/sp805-wdt.txt create mode 100644 drivers/watchdog/menz69_wdt.c