Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-18 Thread Wen Congyang
At 10/17/2012 04:50 PM, KOSAKI Motohiro Wrote: > On Wed, Oct 17, 2012 at 2:24 AM, Wen Congyang wrote: >> At 10/12/2012 06:33 AM, KOSAKI Motohiro Wrote: >>> On Thu, Oct 11, 2012 at 1:26 AM, Yasuaki Ishimatsu >>> wrote: When calling unregister_node(), the function shows following message at >>

Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-17 Thread KOSAKI Motohiro
On Wed, Oct 17, 2012 at 2:24 AM, Wen Congyang wrote: > At 10/12/2012 06:33 AM, KOSAKI Motohiro Wrote: >> On Thu, Oct 11, 2012 at 1:26 AM, Yasuaki Ishimatsu >> wrote: >>> When calling unregister_node(), the function shows following message at >>> device_release(). >>> >>> "Device 'node2' does not

Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-16 Thread Wen Congyang
At 10/12/2012 06:33 AM, KOSAKI Motohiro Wrote: > On Thu, Oct 11, 2012 at 1:26 AM, Yasuaki Ishimatsu > wrote: >> When calling unregister_node(), the function shows following message at >> device_release(). >> >> "Device 'node2' does not have a release() function, it is broken and must >> be fixed."

Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-11 Thread Yasuaki Ishimatsu
2012/10/12 5:31, David Rientjes wrote: On Thu, 11 Oct 2012, Yasuaki Ishimatsu wrote: When calling unregister_node(), the function shows following message at device_release(). "Device 'node2' does not have a release() function, it is broken and must be fixed." The reason is node's device struc

Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-11 Thread KOSAKI Motohiro
On Thu, Oct 11, 2012 at 1:26 AM, Yasuaki Ishimatsu wrote: > When calling unregister_node(), the function shows following message at > device_release(). > > "Device 'node2' does not have a release() function, it is broken and must > be fixed." > > The reason is node's device struct does not have a

Re: [PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-11 Thread David Rientjes
On Thu, 11 Oct 2012, Yasuaki Ishimatsu wrote: > When calling unregister_node(), the function shows following message at > device_release(). > > "Device 'node2' does not have a release() function, it is broken and must > be fixed." > > The reason is node's device struct does not have a release()

[PATCH 2/2]suppress "Device nodeX does not have a release() function" warning

2012-10-10 Thread Yasuaki Ishimatsu
When calling unregister_node(), the function shows following message at device_release(). "Device 'node2' does not have a release() function, it is broken and must be fixed." The reason is node's device struct does not have a release() function. So the patch registers node_device_release() to th