linux-watchdog.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] watchdog updates for v4.12
@ 2017-05-14  3:55 Guenter Roeck
  2017-05-30 11:11 ` Geert Uytterhoeven
  0 siblings, 1 reply; 3+ messages in thread
From: Guenter Roeck @ 2017-05-14  3:55 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Wim Van Sebroeck, linux-watchdog, linux-kernel

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

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

* Re: [GIT PULL] watchdog updates for v4.12
  2017-05-14  3:55 [GIT PULL] watchdog updates for v4.12 Guenter Roeck
@ 2017-05-30 11:11 ` Geert Uytterhoeven
  2017-05-30 11:20   ` Wim Van Sebroeck
  0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2017-05-30 11:11 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Linus Torvalds, Wim Van Sebroeck, Linux Watchdog Mailing List,
	linux-kernel@vger.kernel.org

Hi Günter, Linus, Wim,

On Sun, May 14, 2017 at 5:55 AM, Guenter Roeck <linux@roeck-us.net> wrote:
> 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.

What happened to this pull request?

It seems to have been superseded by "[GIT PULL REQUEST] watchdog - v4.12-rc1
Fixes", which did get pulled, but the latter included less commits.

E.g. the rza_wdt driver was not included.
In addition, it has also disappeared from linux-next?

Thanks!

> 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

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [GIT PULL] watchdog updates for v4.12
  2017-05-30 11:11 ` Geert Uytterhoeven
@ 2017-05-30 11:20   ` Wim Van Sebroeck
  0 siblings, 0 replies; 3+ messages in thread
From: Wim Van Sebroeck @ 2017-05-30 11:20 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Guenter Roeck, Linus Torvalds, Linux Watchdog Mailing List,
	linux-kernel@vger.kernel.org

Hi Geert,

> Hi Günter, Linus, Wim,
> 
> On Sun, May 14, 2017 at 5:55 AM, Guenter Roeck <linux@roeck-us.net> wrote:
> > 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.
> 
> What happened to this pull request?
> 
> It seems to have been superseded by "[GIT PULL REQUEST] watchdog - v4.12-rc1
> Fixes", which did get pulled, but the latter included less commits.
> 
> E.g. the rza_wdt driver was not included.
> In addition, it has also disappeared from linux-next?

The pull request was to late to include it in the merge window.
So we have to wait for the next merge window.
So that's why we sent in the fixes in before rc2 came out.
The other patches will be in the linux-next tree again in a couple of days.

Kind regards,
wim.


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

end of thread, other threads:[~2017-05-30 11:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-14  3:55 [GIT PULL] watchdog updates for v4.12 Guenter Roeck
2017-05-30 11:11 ` Geert Uytterhoeven
2017-05-30 11:20   ` Wim Van Sebroeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).