Re: [U-Boot] [PATCH] watchdog: omap_wdt: Fix WDT target reset when booted from emmc

2019-09-20 Thread Tom Rini
On Mon, Sep 16, 2019 at 01:39:17PM +0530, suni...@techveda.org wrote: > From: Suniel Mahesh > > AM335X based beaglebone black target gets reset by DM converted watchdog > if booted from emmc around 60sec. Fixed this by moving driver's private struct > variable initialization at different places

Re: [U-Boot] [PATCH] watchdog: omap_wdt: Fix WDT target reset when booted from emmc

2019-09-16 Thread Sam Protsenko
Hi Tom, On Mon, Sep 16, 2019 at 11:09 AM wrote: > > From: Suniel Mahesh > > AM335X based beaglebone black target gets reset by DM converted watchdog > if booted from emmc around 60sec. Fixed this by moving driver's private struct > variable initialization at different places in the driver to dri

Re: [U-Boot] [PATCH] watchdog: omap_wdt: Fix WDT target reset when booted from emmc

2019-09-16 Thread Sam Protsenko
On Mon, Sep 16, 2019 at 11:09 AM wrote: > > From: Suniel Mahesh > > AM335X based beaglebone black target gets reset by DM converted watchdog > if booted from emmc around 60sec. Fixed this by moving driver's private struct > variable initialization at different places in the driver to driver's pro

Re: [U-Boot] [PATCH] watchdog: omap_wdt: Fix WDT target reset when booted from emmc

2019-09-16 Thread Grygorii Strashko
On 16/09/2019 11:09, suni...@techveda.org wrote: From: Suniel Mahesh AM335X based beaglebone black target gets reset by DM converted watchdog if booted from emmc around 60sec. Fixed this by moving driver's private struct variable initialization at different places in the driver to driver's pr

[U-Boot] [PATCH] watchdog: omap_wdt: Fix WDT target reset when booted from emmc

2019-09-16 Thread sunil . m
From: Suniel Mahesh AM335X based beaglebone black target gets reset by DM converted watchdog if booted from emmc around 60sec. Fixed this by moving driver's private struct variable initialization at different places in the driver to driver's probe. Tested on Beaglebone Black. Cc: Grygorii Strash