Re: [PATCH v2] cpufreq: highbank: do not initialize array with a loop

2013-02-25 Thread Mark Langsdorf
On 02/25/2013 05:07 AM, Emilio López wrote: > As uninitialized array members will be initialized to zero, we can > avoid using a for loop by setting a value to it. > > Signed-off-by: Emilio López > --- > > Note that I don't own any device using this driver, it has only been compile > tested, but

Re: [PATCH v2] cpufreq: highbank: do not initialize array with a loop

2013-02-25 Thread Viresh Kumar
On Mon, Feb 25, 2013 at 4:37 PM, Emilio López wrote: > As uninitialized array members will be initialized to zero, we can > avoid using a for loop by setting a value to it. > > Signed-off-by: Emilio López > --- > > Note that I don't own any device using this driver, it has only been compile > tes

[PATCH v2] cpufreq: highbank: do not initialize array with a loop

2013-02-25 Thread Emilio López
As uninitialized array members will be initialized to zero, we can avoid using a for loop by setting a value to it. Signed-off-by: Emilio López --- Note that I don't own any device using this driver, it has only been compile tested, but it shouldn't cause any issues. Changes v1 -> v2: * Move