Re: [BUG] Device unbound in a resumed state

2016-03-11 Thread Krzysztof Kozlowski
2016-03-12 3:46 GMT+09:00 Alan Stern : > On Fri, 11 Mar 2016, Krzysztof Kozlowski wrote: > >> Hi, >> >> >> Could be related (the same?) with [0]. >> >> I have a driver (hwrng/exynos-rng) which in probe does: >> pm_runtime_set_autosuspend_delay(&pdev->dev, EXYNOS_AUTOSUSPEND_DELAY); >> pm_runtime_us

Re: [BUG] Device unbound in a resumed state

2016-03-11 Thread Alan Stern
On Fri, 11 Mar 2016, Krzysztof Kozlowski wrote: > Hi, > > > Could be related (the same?) with [0]. > > I have a driver (hwrng/exynos-rng) which in probe does: > pm_runtime_set_autosuspend_delay(&pdev->dev, EXYNOS_AUTOSUSPEND_DELAY); > pm_runtime_use_autosuspend(&pdev->dev); > pm_runtime_enable(

[BUG] Device unbound in a resumed state

2016-03-10 Thread Krzysztof Kozlowski
Hi, Could be related (the same?) with [0]. I have a driver (hwrng/exynos-rng) which in probe does: pm_runtime_set_autosuspend_delay(&pdev->dev, EXYNOS_AUTOSUSPEND_DELAY); pm_runtime_use_autosuspend(&pdev->dev); pm_runtime_enable(&pdev->dev); and in remove: pm_runtime_disable(&pdev->dev) Just b