On Tue, Oct 05, 2021 at 03:49:09PM +0200, Greg Kroah-Hartman wrote: > On Tue, Oct 05, 2021 at 04:33:02PM +0300, Nikita Yushchenko wrote: > > > > Commit 723de0f9171e ("staging: most: remove device from interface > > > > structure") moved registration of driver-provided struct device to > > > > the most subsystem, but did not properly update dim2 driver to > > > > work with that change. > > > > > > > > After most subsystem passes driver's dev to register_device(), it > > > > becomes refcounted, and can be only deallocated in the release method. > > > > Provide that by: > > > > - not using devres to allocate the device, > > > > - moving shutdown actions from _remove() to the device release method, > > > > - not calling shutdown actions in _probe() after the device becomes > > > > refcounted. > > > > > > Should this be 3 patches? > > > > But these three items are deeply interconnected, and fix the issue together. > > Must not manually free device structure passed to register_device(), thus > > must not allocate via devres (because otherwise, devres will free it). Once > > not using devres for it, must deallocate it somehow else, thus must rework > > the release paths. > > Ok, but that was obvious. That was *not* obvious.