mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Wim Van Sebroeck <wim@iguana.be>,
	linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] watchdog updates for v4.12
Date: Sat, 13 May 2017 20:55:05 -0700	[thread overview]
Message-ID: <1494734105-15506-1-git-send-email-linux@roeck-us.net> (raw)

Hi Linus,

As requested by Wim:

Please pull watchdog updates for Linux v4.12 from signed tag:

    git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git watchdog-for-linus-v4.12

Note: I had to drop one of the patches affecting drivers/watchdog/iTCO_wdt.c
because it and some other patches affecting the same file came in from
another tree, causing severe and unnecessary conflicts. Other than that,
the tree is about two weeks old, even though it looks like some of the
patches are brand new.

Thanks,
Guenter
------

The following changes since commit 39da7c509acff13fc8cb12ec1bb20337c988ed36:

  Linux 4.11-rc6 (2017-04-09 09:49:44 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/watchdog-for-linus-v4.12

for you to fetch changes up to edf44420d704503d349025f22ab1973350427cca:

  watchdog: bcm281xx: Fix use of uninitialized spinlock. (2017-05-13 20:26:30 -0700)

----------------------------------------------------------------
Watchdog patches for v4.12

New drivers for STM32 and Renesas RZA watchdogs
Added support for F71868 to f71808e_wdt
Bug fixes and minor improvements in several drivers

----------------------------------------------------------------
Alexandre Belloni (4):
      watchdog: sama5d4: fix WDDIS handling
      watchdog: sama5d4: fix race condition
      watchdog: sama5d4: simplify probe
      watchdog: sama5d4: Add comment explaining what happens on resume

Andy Shevchenko (1):
      watchdog: intel-mid_wdt: Keep watchdog running

Arnd Bergmann (1):
      watchdog: orion: fix compile-test dependencies

Chris Brandt (2):
      watchdog: add rza_wdt driver
      watchdog: renesas-wdt: add support for rza

Eric Anholt (1):
      watchdog: bcm281xx: Fix use of uninitialized spinlock.

Guenter Roeck (1):
      watchdog: gpio: Convert to use infrastructure triggered keepalives

Johan Hovold (1):
      watchdog: pcwd_usb: fix NULL-deref at probe

Krzysztof Kozlowski (3):
      watchdog: s3c2410: Constify local structures
      watchdog: s3c2410: Simplify getting driver data
      watchdog: s3c2410: Minor code cleanup

Maciej S. Szmigiero (1):
      watchdog: f71808e_wdt: Add F71868 support

Paolo Bonzini (1):
      iTCO_wdt: all versions count down twice

Shile Zhang (1):
      watchdog: wdt_pci: fix build error if SOFTWARE_REBOOT is defined

Steve Twiss (1):
      Documentation: devicetree: watchdog: da9062/61 watchdog timer binding

Tomas Melin (1):
      watchdog: cadence_wdt: fix timeout setting

Uwe Kleine-König (1):
      watchdog: orion: make license info match the file header

Wei Yongjun (1):
      watchdog: zx2967: remove redundant dev_err call in zx2967_wdt_probe()

Yannick Fertre (2):
      dt-bindings: watchdog: Document STM32 IWDG bindings
      drivers: watchdog: Add STM32 IWDG driver

 .../devicetree/bindings/watchdog/da9062-wdt.txt    |  23 ++
 .../devicetree/bindings/watchdog/renesas-wdt.txt   |   4 +-
 .../devicetree/bindings/watchdog/st,stm32-iwdg.txt |  19 ++
 Documentation/watchdog/watchdog-parameters.txt     |   2 +-
 drivers/watchdog/Kconfig                           |  29 ++-
 drivers/watchdog/Makefile                          |   2 +
 drivers/watchdog/bcm_kona_wdt.c                    |   3 +-
 drivers/watchdog/cadence_wdt.c                     |   2 +-
 drivers/watchdog/f71808e_wdt.c                     |  27 ++-
 drivers/watchdog/gpio_wdt.c                        |  73 ++----
 drivers/watchdog/iTCO_wdt.c                        |  22 +-
 drivers/watchdog/intel-mid_wdt.c                   |  17 +-
 drivers/watchdog/orion_wdt.c                       |   2 +-
 drivers/watchdog/pcwd_usb.c                        |   3 +
 drivers/watchdog/rza_wdt.c                         | 199 ++++++++++++++++
 drivers/watchdog/s3c2410_wdt.c                     |  58 +++--
 drivers/watchdog/sama5d4_wdt.c                     |  96 +++++---
 drivers/watchdog/stm32_iwdg.c                      | 253 +++++++++++++++++++++
 drivers/watchdog/wdt_pci.c                         |   2 +-
 drivers/watchdog/zx2967_wdt.c                      |   4 +-
 20 files changed, 686 insertions(+), 154 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/watchdog/da9062-wdt.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt
 create mode 100644 drivers/watchdog/rza_wdt.c
 create mode 100644 drivers/watchdog/stm32_iwdg.c

             reply	other threads:[~2017-05-14  3:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-14  3:55 Guenter Roeck [this message]
2017-05-30 11:11 ` Geert Uytterhoeven
2017-05-30 11:20   ` Wim Van Sebroeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1494734105-15506-1-git-send-email-linux@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=wim@iguana.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®