Re: [PATCH] arm: omap: hwmod: drop unnecessary list initialization

2014-11-07 Thread Paul Walmsley
Hi On Thu, 6 Nov 2014, Felipe Balbi wrote: On Mon, Nov 03, 2014 at 11:39:52PM -0600, Felipe Balbi wrote: Hi, On Mon, Jul 28, 2014 at 05:24:34AM +, Paul Walmsley wrote: On Tue, 15 Jul 2014, Felipe Balbi wrote: ml-node and sl-node are currently initialized by means of

Re: [PATCH] arm: omap: hwmod: drop unnecessary list initialization

2014-11-06 Thread Felipe Balbi
On Mon, Nov 03, 2014 at 11:39:52PM -0600, Felipe Balbi wrote: Hi, On Mon, Jul 28, 2014 at 05:24:34AM +, Paul Walmsley wrote: On Tue, 15 Jul 2014, Felipe Balbi wrote: ml-node and sl-node are currently initialized by means of INIT_LIST_HEAD(). That initialiation is followed by

Re: [PATCH] arm: omap: hwmod: drop unnecessary list initialization

2014-11-03 Thread Felipe Balbi
Hi, On Mon, Jul 28, 2014 at 05:24:34AM +, Paul Walmsley wrote: On Tue, 15 Jul 2014, Felipe Balbi wrote: ml-node and sl-node are currently initialized by means of INIT_LIST_HEAD(). That initialiation is followed by a list_add() call. Looking at what both these functions do we

Re: [PATCH] arm: omap: hwmod: drop unnecessary list initialization

2014-07-27 Thread Paul Walmsley
On Tue, 15 Jul 2014, Felipe Balbi wrote: ml-node and sl-node are currently initialized by means of INIT_LIST_HEAD(). That initialiation is followed by a list_add() call. Looking at what both these functions do we will have: ml-node.next = ml-node; ml-node.prev = ml-node;

[PATCH] arm: omap: hwmod: drop unnecessary list initialization

2014-07-15 Thread Felipe Balbi
ml-node and sl-node are currently initialized by means of INIT_LIST_HEAD(). That initialiation is followed by a list_add() call. Looking at what both these functions do we will have: ml-node.next = ml-node; ml-node.prev = ml-node; oi-master-master_ports.next.prev =