All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL REQUEST] watchdog - v5.16 Merge window
@ 2021-11-09 14:05 Wim Van Sebroeck
  2021-11-10 17:44 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Wim Van Sebroeck @ 2021-11-09 14:05 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Andrew Morton, LKML, Linux Watchdog Mailing List, Guenter Roeck,
	Ahmad Fatoum, Artem Lapkin, Cai Huoqing, Fengquan Chen,
	Geert Uytterhoeven, Jackie Liu, Krzysztof Kozlowski,
	Linus Walleij, Lukas Bulwahn, Mika Westerberg, Philipp Zabel,
	Primoz Fiser, Rafał Miłecki, Samuel Holland, Tang Bin,
	Thomas Weißschuh

Hi Linus,

Please pull the watchdog changes for the v5.16 release cycle.

This series contains:
* f71808e_wdt: convert to watchdog framework
* db8500_wdt: Rename driver (was ux500_wdt.c)
* sunxi: Add compatibles for R329 and D1
* mtk: add disable_wdt_extrst support
* several other small fixes and improvements

The output from git request-pull:
----------------------------------------------------------------
The following changes since commit cd004d8299f1dc6cfa6a4eea8f94cb45eaedf070:

  watchdog: Fix OMAP watchdog early handling (2021-10-26 20:22:51 +0200)

are available in the git repository at:

  git://www.linux-watchdog.org/linux-watchdog.git tags/linux-watchdog-5.16-rc1

for you to fetch changes up to c738888032ffafa1bbb971cd55b3d43b05b344cf:

  watchdog: db8500_wdt: Rename symbols (2021-11-01 20:18:09 +0100)

----------------------------------------------------------------
linux-watchdog 5.16-rc1 tag

----------------------------------------------------------------
Ahmad Fatoum (7):
      watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT
      watchdog: f71808e_wdt: remove superfluous global
      watchdog: f71808e_wdt: constify static array
      watchdog: f71808e_wdt: rename variant-independent identifiers appropriately
      watchdog: f71808e_wdt: migrate to new kernel watchdog API
      watchdog: f71808e_wdt: refactor to platform device/driver pair
      watchdog: f71808e_wdt: dynamically allocate watchdog driver data

Artem Lapkin (2):
      watchdog: meson_gxbb_wdt: add nowayout parameter
      watchdog: meson_gxbb_wdt: add timeout parameter

Cai Huoqing (3):
      watchdog: ar7_wdt: Make use of the helper function devm_platform_ioremap_resource_byname()
      watchdog: iTCO_wdt: Make use of the helper function devm_platform_ioremap_resource()
      watchdog: rti-wdt: Make use of the helper function devm_platform_ioremap_resource()

Fengquan Chen (2):
      dt-bindings: watchdog: mtk-wdt: add disable_wdt_extrst support
      watchdog: mtk: add disable_wdt_extrst support

Geert Uytterhoeven (1):
      watchdog: rza_wdt: Use semicolons instead of commas

Jackie Liu (1):
      ar7: fix kernel builds for compiler test

Krzysztof Kozlowski (1):
      watchdog: s3c2410: describe driver in KConfig

Linus Walleij (3):
      watchdog: ux500_wdt: Drop platform data
      watchdog: db8500_wdt: Rename driver
      watchdog: db8500_wdt: Rename symbols

Lukas Bulwahn (1):
      watchdog: remove dead iop watchdog timer driver

Mika Westerberg (1):
      watchdog: iTCO_wdt: No need to stop the timer in probe

Philipp Zabel (1):
      watchdog: mlx-wdt: Use regmap_write_bits()

Primoz Fiser (1):
      watchdog: da9062: da9063: prevent pings ahead of machine reset

Rafał Miłecki (1):
      watchdog: bcm63xx_wdt: fix fallthrough warning

Samuel Holland (3):
      dt-bindings: watchdog: sunxi: Add compatibles for R329
      dt-bindings: watchdog: sunxi: Add compatibles for D1
      watchdog: sunxi_wdt: Add support for D1

Tang Bin (1):
      watchdog: stm32_iwdg: drop superfluous error message

Thomas Weißschuh (1):
      watchdog: sp5100_tco: Add support for get_timeleft

 .../bindings/watchdog/allwinner,sun4i-a10-wdt.yaml |  48 +-
 .../devicetree/bindings/watchdog/mtk-wdt.txt       |   2 +
 drivers/mfd/db8500-prcmu.c                         |  13 +-
 drivers/watchdog/Kconfig                           |  35 +-
 drivers/watchdog/Makefile                          |   3 +-
 drivers/watchdog/ar7_wdt.c                         |   6 +-
 drivers/watchdog/bcm63xx_wdt.c                     |   2 +
 drivers/watchdog/da9062_wdt.c                      |   7 +
 drivers/watchdog/da9063_wdt.c                      |   7 +
 drivers/watchdog/{ux500_wdt.c => db8500_wdt.c}     |  89 ++-
 drivers/watchdog/f71808e_wdt.c                     | 615 +++++++--------------
 drivers/watchdog/iTCO_wdt.c                        |  19 +-
 drivers/watchdog/iop_wdt.c                         | 250 ---------
 drivers/watchdog/meson_gxbb_wdt.c                  |  12 +
 drivers/watchdog/mlx_wdt.c                         |   5 +-
 drivers/watchdog/mtk_wdt.c                         |   7 +
 drivers/watchdog/rti_wdt.c                         |   4 +-
 drivers/watchdog/rza_wdt.c                         |   4 +-
 drivers/watchdog/sp5100_tco.c                      |   9 +
 drivers/watchdog/stm32_iwdg.c                      |   4 +-
 drivers/watchdog/sunxi_wdt.c                       |  20 +-
 include/linux/platform_data/ux500_wdt.h            |  18 -
 22 files changed, 384 insertions(+), 795 deletions(-)
 rename drivers/watchdog/{ux500_wdt.c => db8500_wdt.c} (54%)
 delete mode 100644 drivers/watchdog/iop_wdt.c
 delete mode 100644 include/linux/platform_data/ux500_wdt.h
----------------------------------------------------------------

Kind regards,
Wim.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL REQUEST] watchdog - v5.16 Merge window
  2021-11-09 14:05 [GIT PULL REQUEST] watchdog - v5.16 Merge window Wim Van Sebroeck
@ 2021-11-10 17:44 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-11-10 17:44 UTC (permalink / raw)
  To: Wim Van Sebroeck
  Cc: Linus Torvalds, Andrew Morton, LKML, Linux Watchdog Mailing List,
	Guenter Roeck, Ahmad Fatoum, Artem Lapkin, Cai Huoqing,
	Fengquan Chen, Geert Uytterhoeven, Jackie Liu,
	Krzysztof Kozlowski, Linus Walleij, Lukas Bulwahn,
	Mika Westerberg, Philipp Zabel, Primoz Fiser,
	Rafał Miłecki, Samuel Holland, Tang Bin,
	Thomas Weißschuh

The pull request you sent on Tue, 9 Nov 2021 15:05:40 +0100:

> git://www.linux-watchdog.org/linux-watchdog.git tags/linux-watchdog-5.16-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/89d714ab6043bca7356b5c823f5335f5dce1f930

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-11-10 17:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-09 14:05 [GIT PULL REQUEST] watchdog - v5.16 Merge window Wim Van Sebroeck
2021-11-10 17:44 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.