Re: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-24 Thread Dmitry Torokhov
On Mon, Feb 25, 2013 at 10:53:42AM +0400, Alexander Shiyan wrote: > > On Sat, Feb 23, 2013 at 04:51:19PM -0700, Stephen Warren wrote: > > > On 02/22/2013 10:28 PM, Alexander Shiyan wrote: > > > >> On 02/22/2013 10:15 PM, Alexander Shiyan wrote: > > > >>> The driver can be used in various subsystems

Re[2]: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-24 Thread Alexander Shiyan
> On Sat, Feb 23, 2013 at 04:51:19PM -0700, Stephen Warren wrote: > > On 02/22/2013 10:28 PM, Alexander Shiyan wrote: > > >> On 02/22/2013 10:15 PM, Alexander Shiyan wrote: > > >>> The driver can be used in various subsystems and therefore should not > > >>> be unloaded when it is defined in the ke

Re: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-23 Thread Dmitry Torokhov
On Sat, Feb 23, 2013 at 04:51:19PM -0700, Stephen Warren wrote: > On 02/22/2013 10:28 PM, Alexander Shiyan wrote: > >> On 02/22/2013 10:15 PM, Alexander Shiyan wrote: > >>> The driver can be used in various subsystems and therefore should not > >>> be unloaded when it is defined in the kernel confi

Re: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-23 Thread Stephen Warren
On 02/22/2013 10:28 PM, Alexander Shiyan wrote: >> On 02/22/2013 10:15 PM, Alexander Shiyan wrote: >>> The driver can be used in various subsystems and therefore should not >>> be unloaded when it is defined in the kernel configuration, so remove >>> support for unloading it. >> >> Why not fix the

Re: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-23 Thread Arnd Bergmann
On Saturday 23 February 2013, Alexander Shiyan wrote: > The driver can be used in various subsystems and therefore should not > be unloaded when it is defined in the kernel configuration, so remove > support for unloading it. > > Signed-off-by: Alexander Shiyan I think the description is still w

Re[2]: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-22 Thread Alexander Shiyan
> On 02/22/2013 10:15 PM, Alexander Shiyan wrote: > > The driver can be used in various subsystems and therefore should not > > be unloaded when it is defined in the kernel configuration, so remove > > support for unloading it. > > Why not fix the clients to module_get() at the appropriate times;

Re: [PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-22 Thread Stephen Warren
On 02/22/2013 10:15 PM, Alexander Shiyan wrote: > The driver can be used in various subsystems and therefore should not > be unloaded when it is defined in the kernel configuration, so remove > support for unloading it. Why not fix the clients to module_get() at the appropriate times; then you cou

[PATCH v5 1/3] mfd: syscon: Removed support for unloading

2013-02-22 Thread Alexander Shiyan
The driver can be used in various subsystems and therefore should not be unloaded when it is defined in the kernel configuration, so remove support for unloading it. Signed-off-by: Alexander Shiyan --- drivers/mfd/syscon.c | 18 -- 1 file changed, 18 deletions(-) diff --git a/dr